GTFS, OSM, and Equity - 1

Bon Woo Koo & Subhrajit Guhathakurta

2022-07-14

Environment Setting

# Import required packages
library(tidytransit)
library(tidyverse)
library(tmap)
library(ggplot2)
library(gtfsrouter)
library(here)
library(units)
library(sf)
library(leaflet)
library(tidycensus)
library(plotly)
library(igraph)
library(tidygraph)
library(dodgr)
source("https://raw.githubusercontent.com/BonwooKoo/gtfs_to_igraph/master/gtfs_to_igraph.R")

wd <- file.path(Sys.getenv('setwd'),"work/working/School/UA_2022/external/Lab/module_2")
setwd(eval(wd))

What is the General Transit Feed Specification (GTFS)?

The GTFS is a common format for public transit schedules and associated geographic information provided by transit agencies.

Before GTFS, there wasn’t (to the best of my knowledge, at least) a standardized format for transit timetables other associated information. Users of transit data across multiple transit agencies had to deal with different data formats. With GTFS, feeds from different agencies became standardized (although not perfect), making applications of the data easy.

Useful Links:

Let’s download some GTFS feed provided by Metropolitan Atlanta Rapid Transit Authority (MARTA).

## Directly from URL into R
# atl <- tidytransit::read_gtfs("http://www.itsmarta.com/google_transit_feed/google_transit.zip")

atl <- read_gtfs('MARTA_GTFS_Latest_Feed.zip')

# Take a look
summary(atl)

Note that the code above downloaded the GTFS feed from an URL directly into your R environment. If you want to get a stable copy for your self, you can also save the GTFS feed into your hard drive first and then read it into R. See below.

# NOT RUN: From URL to hard drive, then into R
download_path <- file.path(getwd(), "GTFS_MARTA.zip")
download.file("http://www.itsmarta.com/google_transit_feed/google_transit.zip", destfile = download_path)
atl <- tidytransit::read_gtfs(download_path) 


GTFS feed contains many relational tables about transit service schedules, trips, stops, and routes.

Where to get the URL?

Here are some other sources of GTFS feeds:

Understand GTFS

GTFS consists of multiple tables and comes in a zip file as a single package. Transit is a complex system that contains multiple components (e.g., routes, stops, service schedules) working together. The table below shows a brief description of what each data.frame contains. This table is taken from Google.

Description of tables in GTFS feed Table name Defines ———————- ———————
agency Transit agencies with service represented in this dataset.
stops Stops where vehicles pick up or drop off riders. Also defines stations and station entrances. routes Transit routes. A route is a group of trips that are displayed to riders as a single service. trips Trips for each route. A trip is a sequence of two or more stops that occur during a specific time period. stop_times Times that a vehicle arrives at and departs from stops for each trip. calendar Service dates specified using a weekly schedule with start and end dates. This file is required unless all dates of service are defined in calendar_dates.txt. calendar_dates Exceptions for the services defined in the calendar.txt. If calendar.txt is omitted, then calendar_dates.txt is required and must contain all dates of service. fare_attributes Fare information for a transit agency’s routes. fare_rules Rules to apply fares for itineraries. shapes Rules for mapping vehicle travel paths, sometimes referred to as route alignments. frequencies Headway (time between trips) for headway-based service or a compressed representation of fixed-schedule service. transfer Rules for making connections at transfer points between routes. pathways Pathways linking together locations within stations. levels Levels within stations. feed_into Dataset metadata, including publisher, version, and expiration information. translations Translated information of a transit agency. attributions Specifies the attributions that are applied to the dataset. ———————- ———————

These tables are relational table that are connected through a system of join keys. The schematic below shows which tables are linked to which tables, through which join keys. Understanding this structure is essential in using GTFS.

IMAGE SOURCE: http://tidytransit.r-transit.org/articles/introduction.html

what’s inside atl object

Now, let’s take a look the atl object in which we read the GTFA feed from MARTA. This object is a list. In it, names(atl) shows that there are 9 data.frames. Notice that there are many tables displayed in the table above, but

typeof(atl)
## [1] "list"
names(atl)
## [1] "agency"         "calendar"       "calendar_dates" "routes"        
## [5] "shapes"         "stop_times"     "stops"          "trips"         
## [9] "."
# head(atl$calendar)


GTFS into geospatial format

The function gtfs_as_sf converts ‘shapes’ and ‘stops’ tables in GTFS data into sf objects.

atlsf <- tidytransit::gtfs_as_sf(atl, crs = 4326)
head(atlsf)
## $agency
## # A tibble: 1 × 7
##   agency_id agency_name                  agenc…¹ agenc…² agenc…³ agenc…⁴ agenc…⁵
##   <chr>     <chr>                        <chr>   <chr>   <chr>   <chr>   <chr>  
## 1 MARTA     Metropolitan Atlanta Rapid … http:/… Americ… en      (404)8… custse…
## # … with abbreviated variable names ¹​agency_url, ²​agency_timezone,
## #   ³​agency_lang, ⁴​agency_phone, ⁵​agency_email
## 
## $calendar
## # A tibble: 4 × 10
##   service_id monday tuesday wednesday thursday friday saturday sunday start_date
##   <chr>       <int>   <int>     <int>    <int>  <int>    <int>  <int> <date>    
## 1 2               0       0         0        0      0        0      0 2021-08-14
## 2 3               0       0         0        0      0        1      0 2021-08-14
## 3 4               0       0         0        0      0        0      1 2021-08-14
## 4 5               1       1         1        1      1        0      0 2021-08-14
## # … with 1 more variable: end_date <date>
## # ℹ Use `colnames()` to see all variable names
## 
## $calendar_dates
## # A tibble: 3 × 3
##   service_id date       exception_type
##   <chr>      <date>              <int>
## 1 5          2021-09-06              2
## 2 5          2021-11-25              2
## 3 5          2021-11-26              2
## 
## $routes
## # A tibble: 118 × 8
##    route_id route_short_name route_lon…¹ route…² route…³ route…⁴ route…⁵ route…⁶
##    <chr>    <chr>            <chr>       <chr>     <int> <chr>   <chr>   <chr>  
##  1 15664    1                Marietta B… ""            3 https:… FF00FF  ""     
##  2 15665    2                Ponce de L… ""            3 https:… 008000  ""     
##  3 15666    3                Martin Lut… ""            3 https:… FF8000  ""     
##  4 15667    4                Moreland A… ""            3 https:… FF00FF  ""     
##  5 15668    5                Piedmont R… ""            3 https:… 00FFFF  ""     
##  6 15669    6                Clifton Ro… ""            3 https:… 008080  ""     
##  7 15670    8                North Drui… ""            3 https:… 008000  ""     
##  8 15671    9                Boulevard … ""            3 https:… 00FFFF  ""     
##  9 15672    12               Howell Mil… ""            3 https:… FF00FF  ""     
## 10 15673    14               14th Stree… ""            3 https:… 00FF00  ""     
## # … with 108 more rows, and abbreviated variable names ¹​route_long_name,
## #   ²​route_desc, ³​route_type, ⁴​route_url, ⁵​route_color, ⁶​route_text_color
## # ℹ Use `print(n = ...)` to see more rows
## 
## $shapes
## Simple feature collection with 394 features and 1 field
## Geometry type: LINESTRING
## Dimension:     XY
## Bounding box:  xmin: -84.67085 ymin: 33.4323 xmax: -84.08274 ymax: 34.10663
## Geodetic CRS:  WGS 84
## First 10 features:
##    shape_id                       geometry
## 1    119402 LINESTRING (-84.55227 33.77...
## 2    119403 LINESTRING (-84.3694 33.821...
## 3    119404 LINESTRING (-84.39192 33.75...
## 4    119405 LINESTRING (-84.50486 33.73...
## 5    119406 LINESTRING (-84.21014 33.85...
## 6    119407 LINESTRING (-84.30635 33.88...
## 7    119408 LINESTRING (-84.33644 33.95...
## 8    119409 LINESTRING (-84.44857 33.65...
## 9    119410 LINESTRING (-84.35409 33.75...
## 10   119411 LINESTRING (-84.35409 33.75...
## 
## $stop_times
## # A tibble: 1,033,990 × 5
##    trip_id arrival_time departure_time stop_id stop_sequence
##    <chr>   <time>       <time>         <chr>           <int>
##  1 8044645 14:35:00     14:35:00       903320              1
##  2 8044645 14:36:02     14:36:02       903448              2
##  3 8044645 14:36:51     14:36:51       901144              3
##  4 8044645 14:37:43     14:37:43       904219              4
##  5 8044645 14:38:19     14:38:19       903850              5
##  6 8044645 14:38:39     14:38:39       903664              6
##  7 8044645 14:39:39     14:39:39       213268              7
##  8 8044645 14:40:12     14:40:12       213101              8
##  9 8044645 14:41:35     14:41:35       212926              9
## 10 8044645 14:41:53     14:41:53       211886             10
## # … with 1,033,980 more rows
## # ℹ Use `print(n = ...)` to see more rows
# Interactive mapping
tmap::tmap_mode('view')
## tmap mode set to interactive viewing
m1 <- tmap::tm_shape(atlsf$shapes) + tmap::tm_lines(alpha = 0.5)
m2 <- tmap::tm_shape(atlsf$stops) + tmap::tm_dots(id = 'stop_name', alpha = 0.5)

tmap::tmap_arrange(m1, m2, sync = T)


Calculate travel times from one station to all other stations

# Filtered stop times
stop_dist <- stop_group_distances(atlsf$stops, by='stop_name') %>% filter(dist_max > 200)

# Replace duplicate names of the stops by appending (1), (2), etc. so that 
# there will be no same stop_name
atl$stops <- atl$stops %>% 
  group_by(stop_name) %>% 
  mutate(stop_name = case_when(stop_name %in% stop_dist$stop_name ~ paste0(stop_name, " (", seq(1,n()), ")"),
                               TRUE ~ stop_name)) 

atl$transfers <- gtfs_transfer_table(atl, 
                                     d_limit = 200, 
                                     min_transfer_time = 120)
## ▶ Finding neighbouring services for each stop
## Loading required namespace: pbapply
## ✔ Found neighbouring services for each stop
## ▶ Expanding to include in-place transfers
## ✔ Expanded to include in-place transfers
am_stop_time <- filter_stop_times(gtfs_obj = atl, 
                                  extract_date = "2021-08-14",
                                  min_departure_time = 3600*7,
                                  max_arrival_time = 3600*10)
# travel_times
trvt <- travel_times(filtered_stop_times = am_stop_time,
                     stop_name = "MIDTOWN STATION",
                     return_coords = TRUE)

# Average time to get to other stations
print(str_c("On average, it takes ", 
            round(mean(trvt$travel_time)/60,1), 
            " minutes to travel from the Midtown Station to all other stations."))
## [1] "On average, it takes 50.1 minutes to travel from the Midtown Station to all other stations."

Visualize the routes and stops

GTFS from MARTA contains information about both rails and buses. The ‘routes’ table in atl has a column named ‘route_type,’ which contains integer values denoting types of transit service. To see what each integer means, you will need to look at the link to the Reference provided above (or see below for a screen capture from the Reference).

Reference from Google

‘routes’ table contains route_types, which is needed for seperating rail transit. ‘shapes’ table contains the shapefile needed for geooperations such as buffer, intersections, etc. Because ‘routes’ and ‘shapes’ table do not contain a common key, they need to be joined through ‘trips’ as intermediary table.

# Filter out rail transit
route_trip <- atl$trips %>% dplyr::left_join(atl$routes, by = "route_id")

unique_shape <- route_trip %>% 
  dplyr::group_by(route_id) %>% 
  dplyr::slice(1) %>% 
  dplyr::ungroup()

route.shape <- atlsf$shape %>% inner_join(unique_shape, by = "shape_id")

# Route type is not really intuitive - let's fix that
route.shape <- route.shape %>% 
  dplyr::mutate(route_type = dplyr::case_when(
    route_type == "0" ~ 'Tram, Streetcar',
    route_type == "1" ~ 'Subway, Metro',
    route_type == "2" ~ 'Rail',
    route_type == "3" ~ 'Bus'
  ))
pal <- leaflet::colorFactor(c("red", "orange", "pink"), domain = route.shape$route_type)

route.shape %>% 
  leaflet::leaflet(data = .) %>% 
    leaflet::addProviderTiles(providers$CartoDB.DarkMatter) %>% 
    leaflet::addPolylines(color = ~pal(route_type), 
                 weight = 3,
                 opacity = 0.9,
                 popup = paste0("Route type: ", route.shape$route_type))

Until Version 1.0, the sf package used ‘equirectangular projection’ for many operations that involve, for example, intersects, intersection, union, nearest_point, st_join, etc. It did so even when the given data is in geographical coordinates.

From Version 1.0, sf package uses S2 spherical geometry for spatial operations, based on S2 geometry library written by Google. For more information on what all of these means, you can read this post.

Calculate area of service by SES

GTFS from MARTA contains information about both rails and buses. The ‘routes’ table in atl has a column named ‘route_type,’ which contains integer values denoting types of transit service. To see what each integer means, you will need to look at the link to the Reference provided above (or see below for a screen capture from the Reference).

Reference from Google

‘routes’ table contains route_types, which is needed for seperating rail transit. ‘shapes’ table contains the shapefile needed for geooperations such as buffer, intersections, etc. Because ‘routes’ and ‘shapes’ table do not contain a common key, they need to be joined through ‘trips’ as intermediary table.

# Filter out rail transit
route_trip <- atl$trips %>% dplyr::left_join(atl$routes, by = "route_id")

unique_shape <- route_trip %>% 
  dplyr::group_by(route_id) %>% 
  dplyr::slice(1) %>% 
  dplyr::ungroup()

route.shape <- atlsf$shape %>% inner_join(unique_shape, by = "shape_id")

# Route type is not really intuitive - let's fix that
route.shape <- route.shape %>% 
  dplyr::mutate(route_type = dplyr::case_when(
    route_type == "0" ~ 'Tram, Streetcar',
    route_type == "1" ~ 'Subway, Metro',
    route_type == "2" ~ 'Rail',
    route_type == "3" ~ 'Bus'
  ))
pal <- leaflet::colorFactor(c("red", "orange", "pink"), domain = route.shape$route_type)

route.shape %>% 
  leaflet::leaflet(data = .) %>% 
    leaflet::addProviderTiles(providers$CartoDB.DarkMatter) %>% 
    leaflet::addPolylines(color = ~pal(route_type), 
                 weight = 3,
                 opacity = 0.9,
                 popup = paste0("Route type: ", route.shape$route_type))

Until Version 1.0, the sf package used ‘equirectangular projection’ for many operations that involve, for example, intersects, intersection, union, nearest_point, st_join, etc. It did so even when the given data is in geographical coordinates.

From Version 1.0, sf package uses S2 spherical geometry for spatial operations, based on S2 geometry library written by Google. For more information on what all of these means, you can read this post.

# If we do not convert CRS to a projected one, the buffer may generate a ragged boundaries. 
# https://r-spatial.github.io/sf/articles/sf7.html#buffers-1
# https://r-spatial.org/r/2020/06/17/s2.html#sf-10-goodbye-flat-earth-welcome-s2-spherical-geometry
sf::sf_use_s2(TRUE)
MARTA_buffer <- route.shape %>% 
  sf::st_transform(crs = 26967) %>% 
  sf::st_buffer(dist = units::set_units(400, "m")) 

MARTA_buffer_group <- MARTA_buffer %>% 
  group_by(route_type) %>% 
  summarise()
pal <- colorFactor(palette = c("red", "yellow", "blue"), domain = MARTA_buffer_group$route_type)

leaflet() %>% 
  addProviderTiles(providers$CartoDB.DarkMatter) %>% 
  addPolygons(data = MARTA_buffer_group %>% st_transform(crs = 4326), col = ~pal(route_type),
              popup = MARTA_buffer_group$route_type) 

Calculate travel time

The tidytransit package offers a very convenient function that calculates the shortest travel times from a stop to all other stops. Try ?tidytransit::travel_times to see what this function does and what arguments it takes.

Notice that only two out of nine arguments are required, and the rest are optional. The required arguments are ‘filtered_stop_times’ and ‘stop_name.’ If you do not provide the optional arguments, the function will use the pre-populated values for the calculation.

One of two arguments, filtered_stop_times, can be generated using the function tidytransit::filter_stop_times(). This function

On average, you can see that it takes 50.1 minutes from the Midtown Station to other stations. On the map, you can see that it takes longer time to get to stops that are further away from the Midtown Station. Let’s do this calculation for other stops in different parts of the city to see if there are a particular corners of the city that are burdened with longer travel time on average. To do this, we will do the following steps:

  1. Randomly sample a few stations from each Census Tract.

Overlaying GTFS with Census

acs2020c <- acs2020 %>% 
  select(GEOID,
         hhinc = hhincE,
         r_tot = r_totE,
         r_wh = r_whE,
         r_bl = r_blE,
         tot_hh = tot_hhE,
         own_novhc = own_novhcE,
         rent_novhc = rent_novhcE) %>% 
  mutate(pct_wh = r_wh / r_tot,
         pct_bl = r_bl / r_tot,
         pct_novhc = (own_novhc + rent_novhc)/tot_hh) %>% 
  mutate(area1 = unclass(st_area(.))) %>% 
  st_transform(26967) %>% 
  mutate(area2 = unclass(st_area(.))) %>% 
  st_transform(crs = 4326) %>% 
  mutate(ln_pop_den = log((r_tot / (area1/1000^2)) + 1)) %>% 
  filter(!is.na(hhinc), !is.na(r_tot), !is.na(own_novhc))

pal1 <- colorNumeric(palette = "YlOrRd", domain = acs2020c$hhinc)
pal2 <- colorFactor("Spectral", domain = MARTA_buffer_group$route_type)

leaflet() %>% 
  addProviderTiles(providers$CartoDB.DarkMatter) %>% 
  addPolygons(group = "ACS",
              data = acs2020c, 
              color = "grey", 
              fillColor = ~pal1(hhinc), 
              fillOpacity = 0.5,
              weight = 1, 
              popup = leafpop::popupTable(round(st_drop_geometry(acs2020c[,c("hhinc", "pct_wh", "pct_bl")]),2))) %>% 
  addPolygons(group = "MARTA",
              data = MARTA_buffer_group %>% 
                st_transform(crs = st_crs(acs2020c)), 
              color = ~pal2(route_type),
              weight = 1,
              opacity = 0.9) %>% 
  addLayersControl(
    overlayGroups = c("ACS", "MARTA"),
    options = layersControlOptions(collapsed = FALSE)
  )
# Intersect buffer with tract 
buffer_per_tract1 <- acs2020c %>% 
  st_transform(crs = 26967) %>% 
  st_intersection(MARTA_buffer_group) %>% 
  filter(route_type == "Bus") %>% 
  # After Intersection
  mutate(subarea = unclass(st_area(.)),
         pct_served1 = subarea/area1,
         pct_served2 = subarea/area2) %>% 
  st_transform(crs = 4326)
## Warning: attribute variables are assumed to be spatially constant throughout all
## geometries
buffer_per_tract2 <- acs2020c %>% 
  left_join(buffer_per_tract1 %>% select(GEOID, pct_served1) %>% st_set_geometry(NULL),
            by = "GEOID") %>% 
  # There are many NAs in the pct_served1 column
  mutate(pct_served1 = case_when(is.na(pct_served1) ~ 0,
                                 TRUE ~ pct_served1))

pal <- colorNumeric(palette = "YlOrRd", domain = buffer_per_tract2$pct_served1)

leaflet() %>% 
  addProviderTiles(providers$CartoDB.DarkMatter) %>% 
  addPolygons(data = buffer_per_tract2, 
              fillColor = ~pal(pct_served1), fillOpacity = 0.9, 
              color = "white", opacity = 0.2, 
              weight = 1) %>% 
  addLegend("bottomright",
            pal = pal,
            values = buffer_per_tract2$pct_served1,
            title = "% Area within 400m from transit line") 

Be careful when calculating area. tm_shape( buffer_per_tract %>% mutate(diff = (area2 - area1)/area2)) + tm_polygons(col = 'diff', style = 'quantile')

# Is there any correlation between SES and service area?
var_name <- list(
  'hhinc'="Annual Household Income",
  'pct_bl'="% Black population",
  'pct_novhc'="% Household without vehicle",
  'pct_wh'="% White population",
  'r_tot'="Total population",
  'ln_pop_den' = "Population density"
)

var_labeller <- function(variable, value){
  return(var_name[value])
}

na_index <- buffer_per_tract2 %>% 
  select(hhinc, r_tot, ln_pop_den, starts_with('pct')) %>% 
  is.na(.) %>% 
  apply(., 1, function(x) sum(x)==0)

buffer_per_tract2 %>% 
  filter(na_index) %>% 
  pivot_longer(cols = c('hhinc', 'pct_wh', 'pct_bl', 'pct_novhc', "r_tot", "ln_pop_den"), names_to = "variable", values_to = "value") %>% 
  ggplot() +
  geom_point(aes(x = pct_served1, y = value), alpha = 0.4) +
  facet_wrap(~variable, scales = "free_y", labeller = var_labeller) +
  labs(x = "% Area with 400m beffer from transit line") +
  theme_bw()
## Warning: The labeller API has been updated. Labellers taking `variable` and
## `value` arguments are now deprecated. See labellers documentation.

test_var <- c("hhinc", "pct_bl", "pct_wh", "pct_novhc", "r_tot", "ln_pop_den")

map_chr(test_var, function(x){
  cor.object <- cor.test(buffer_per_tract2[['pct_served1']], 
                         buffer_per_tract2[[x]])
  r <- round(cor.object$estimate,3)
  t <- round(cor.object$statistic,3)
  p <- round(cor.object$p.value,3)
  return(paste0("for ",x ,", r=", r, " (t=", t, ", p=", p, ")"))
})
## [1] "for hhinc, r=-0.403 (t=-10.691, p=0)"   
## [2] "for pct_bl, r=0.089 (t=2.16, p=0.031)"  
## [3] "for pct_wh, r=-0.106 (t=-2.575, p=0.01)"
## [4] "for pct_novhc, r=0.52 (t=14.761, p=0)"  
## [5] "for r_tot, r=-0.307 (t=-7.819, p=0)"    
## [6] "for ln_pop_den, r=0.54 (t=15.553, p=0)"

Reflecting the frequency differences

Since some stops have more frequent services than others, it is useful to consider the service frequency. Here, we are doing to focus on the morning commute time (7AM to 10 AM) and count the number of departures at each stops.

service_ids <- atl$.$dates_services %>% pull(service_id)
stop_freq <- get_stop_frequency(atl, start_time = 3600*7, end_time = 10*3600, service_ids = service_ids, by_route = T) 
stop_freq_sf <- atlsf$stops %>% 
  left_join(stop_freq, by="stop_id") %>% 
  filter(!is.na(n_departures))

freq_pal <- colorNumeric("Reds", stop_freq_sf$n_departures)

leaflet() %>% 
  addProviderTiles(providers$CartoDB.DarkMatter) %>% 
  addCircles(data = stop_freq_sf,
             fillColor = freq_pal(stop_freq_sf$n_departures),
             fillOpacity = 0.8,
             weight = 10,
             stroke = FALSE,
             popup = str_c(stop_freq_sf$stop_name, ": ", stop_freq_sf$n_departures)) %>% 
  addLegend(position = "bottomright",
            pal = freq_pal,
            values = stop_freq_sf$n_departures,
            title = "Count of Departures <br> between 7AM and 10AM")
Exercise: Do the calculating separately for rail transit and bus transit.

Merge frequency by stop information with ACS data

stop_tract <- acs2020c %>% 
  st_transform(crs = 4326) %>% 
  st_join(stop_freq_sf) %>% 
  group_by(GEOID) %>% 
  summarise(n_departures = sum(n_departures),
            hhinc = mean(hhinc),
            r_tot = mean(r_tot),
            pct_wh = mean(pct_wh),
            pct_bl = mean(pct_bl),
            pct_novhc = mean(pct_novhc),
            r_tot = mean(r_tot),
            ln_pop_den = mean(ln_pop_den))

knitr::kable(stop_tract)
GEOID n_departures hhinc r_tot pct_wh pct_bl pct_novhc ln_pop_den geometry
13063040202 365 35530 2832 0.0497881 0.7916667 0.1889764 5.611199 POLYGON ((-84.43865 33.6168…
13063040203 54 39500 3911 0.0352851 0.8665303 0.0795869 7.203325 POLYGON ((-84.45856 33.5944…
13063040204 147 44158 5045 0.0200198 0.9197225 0.1326844 7.508534 POLYGON ((-84.44988 33.6160…
13063040302 237 38227 5896 0.2170963 0.5875170 0.1170854 6.935060 POLYGON ((-84.3885 33.63184…
13063040306 149 34667 4465 0.1265398 0.7122060 0.0360419 6.932523 POLYGON ((-84.3983 33.61745…
13063040307 NA 51039 4393 0.3271113 0.3403141 0.0714807 7.262021 POLYGON ((-84.37473 33.6036…
13063040308 813 24552 3941 0.2494291 0.5577265 0.2293187 6.064742 POLYGON ((-84.40078 33.6329…
13063040309 280 32202 3048 0.3061024 0.6479659 0.1521906 7.063561 POLYGON ((-84.36531 33.6478…
13063040310 306 42983 3903 0.3904689 0.4632334 0.1605472 6.950689 POLYGON ((-84.36172 33.6196…
13063040407 417 48866 3927 0.2197606 0.4250064 0.0337682 6.054004 POLYGON ((-84.36407 33.6037…
13063040409 132 50688 5931 0.1379194 0.5811836 0.0123077 7.370521 POLYGON ((-84.3183 33.59692…
13063040410 613 47633 8150 0.1558282 0.6164417 0.0668779 5.924803 POLYGON ((-84.34395 33.6156…
13063040414 125 49432 1829 0.2968835 0.4215418 0.0456140 6.749989 POLYGON ((-84.38588 33.5922…
13063040416 192 60625 3624 0.2516556 0.4586093 0.0532030 6.845790 POLYGON ((-84.36733 33.5791…
13063040417 335 41750 7077 0.0733362 0.8502190 0.1042945 7.219045 POLYGON ((-84.37177 33.5697…
13063040418 209 64036 2841 0.2249208 0.4410419 0.1831325 6.919265 POLYGON ((-84.35525 33.6004…
13063040419 NA 45731 7200 0.0844444 0.6901389 0.2027163 7.541663 POLYGON ((-84.33918 33.5832…
13063040420 12 58009 7586 0.1972054 0.4350119 0.0000000 6.928982 POLYGON ((-84.29471 33.5932…
13063040421 58 57540 5572 0.1290380 0.8334530 0.0000000 6.240728 POLYGON ((-84.28806 33.6106…
13063040422 103 32031 2396 0.0275459 0.7591820 0.1832994 7.373242 POLYGON ((-84.39027 33.5948…
13063040423 161 45114 4622 0.1929900 0.7265253 0.0220327 7.513148 POLYGON ((-84.38597 33.5580…
13063040424 649 58641 2844 0.0801688 0.6786217 0.1313526 6.609521 POLYGON ((-84.34553 33.5532…
13063040425 72 41683 5258 0.1529099 0.4621529 0.0324586 7.137531 POLYGON ((-84.34089 33.5767…
13063040426 48 58854 2832 0.2807203 0.5381356 0.0209424 7.288027 POLYGON ((-84.30643 33.5696…
13063040427 NA 54732 4992 0.2367788 0.6726763 0.1002882 7.164719 POLYGON ((-84.2922 33.56914…
13063040509 NA 53904 4470 0.0413870 0.9304251 0.0099882 6.754893 POLYGON ((-84.45893 33.5654…
13063040510 136 65110 4342 0.0338554 0.8399355 0.0592495 7.259028 POLYGON ((-84.44623 33.5906…
13063040512 194 39521 5229 0.0558424 0.8714859 0.1161290 7.049067 POLYGON ((-84.44783 33.5691…
13063040513 466 47290 5322 0.1426156 0.7886133 0.0299667 6.628677 POLYGON ((-84.45892 33.5597…
13063040518 36 42557 5727 0.1199581 0.7422734 0.1088757 7.391613 POLYGON ((-84.40247 33.5107…
13063040519 200 29343 4498 0.0155625 0.9419742 0.2469352 7.937287 POLYGON ((-84.42897 33.5929…
13063040521 123 37224 3992 0.1054609 0.6357715 0.0647887 7.336674 POLYGON ((-84.40726 33.5723…
13063040522 133 40906 4641 0.0657186 0.7487610 0.0892216 6.840412 POLYGON ((-84.41244 33.5726…
13063040523 362 41124 2831 0.1059696 0.8325680 0.0925197 6.971416 POLYGON ((-84.41483 33.5497…
13063040525 10 46833 2918 0.0884167 0.8708019 0.0388350 7.129031 POLYGON ((-84.40796 33.5150…
13063040527 48 59082 4021 0.0499876 0.9273812 0.0337942 7.461797 POLYGON ((-84.43491 33.5416…
13063040528 20 42853 2977 0.1202553 0.6429291 0.0458498 7.060873 POLYGON ((-84.43336 33.5318…
13063040529 68 48750 3104 0.1185567 0.8711340 0.0794393 7.050478 POLYGON ((-84.41515 33.5465…
13063040530 47 53971 3848 0.1187630 0.6450104 0.0335052 7.058767 POLYGON ((-84.42249 33.5253…
13063040531 130 37268 2356 0.0356537 0.8595076 0.1201672 8.034638 POLYGON ((-84.429 33.60037,…
13063040532 82 45743 1517 0.0804219 0.8319051 0.0851064 7.236828 POLYGON ((-84.41966 33.6052…
13063040533 85 52561 4891 0.1159272 0.7914537 0.0369023 7.313127 POLYGON ((-84.40349 33.5452…
13063040534 142 48678 2729 0.1176255 0.8823745 0.0448239 7.138562 POLYGON ((-84.40774 33.5656…
13063040535 51 75302 3498 0.0314465 0.9150943 0.0189538 7.430091 POLYGON ((-84.40306 33.5438…
13063040536 58 51004 3512 0.1124715 0.8026765 0.0961749 7.307620 POLYGON ((-84.39084 33.525,…
13063040537 10 59507 5186 0.0823371 0.6710374 0.0410076 7.292245 POLYGON ((-84.42738 33.5169…
13063040538 45 52935 2550 0.0478431 0.9117647 0.0400972 7.427424 POLYGON ((-84.42426 33.5223…
13063040606 55 45366 3265 0.3356815 0.5525268 0.0653207 4.882957 POLYGON ((-84.33896 33.4928…
13063040609 342 66641 6961 0.1509841 0.6496193 0.0214053 6.608129 POLYGON ((-84.35421 33.5238…
13063040614 NA 101071 5061 0.4368702 0.3902391 0.0236895 5.899567 POLYGON ((-84.33421 33.5276…
13063040615 NA 57708 1954 0.2297851 0.5568066 0.0132450 6.401393 POLYGON ((-84.32765 33.5371…
13063040617 29 33167 1172 0.5810580 0.2337884 0.1837349 6.976592 POLYGON ((-84.26942 33.5555…
13063040623 6 52153 5948 0.1708137 0.7150303 0.0630153 7.466276 POLYGON ((-84.37412 33.4661…
13063040624 6 78618 2159 0.3997221 0.3205188 0.0885341 6.078146 POLYGON ((-84.38253 33.4857…
13063040625 35 59132 4440 0.1977477 0.6623874 0.0773196 7.225867 POLYGON ((-84.34649 33.4547…
13063040626 NA 67038 6034 0.0873384 0.8190255 0.0064034 7.139777 POLYGON ((-84.37865 33.4561…
13063040627 NA 70268 6002 0.2040986 0.6344552 0.0921589 6.665547 POLYGON ((-84.3542 33.52264…
13063040628 NA 104219 2839 0.2676999 0.7291300 0.0000000 6.151283 POLYGON ((-84.33144 33.4930…
13063040629 126 51099 2453 0.2674276 0.4219323 0.0964539 7.016471 POLYGON ((-84.38483 33.5549…
13063040630 303 44446 3821 0.1510076 0.7623659 0.0876854 6.863793 POLYGON ((-84.37078 33.5555…
13063040631 79 72383 6586 0.1251139 0.8001822 0.0194647 6.236266 POLYGON ((-84.39617 33.4849…
13063040632 114 44351 5657 0.0765423 0.9011844 0.0287500 7.581559 POLYGON ((-84.2993 33.55474…
13063040633 84 60858 3327 0.1424707 0.8142471 0.0902913 6.897199 POLYGON ((-84.32008 33.5649…
13063040634 206 25101 4108 0.0917722 0.8035540 0.1768707 7.368947 POLYGON ((-84.37855 33.5180…
13063040635 347 50469 3961 0.2443827 0.5347135 0.0484581 6.780080 POLYGON ((-84.37082 33.4996…
13063040636 NA 101233 4587 0.2256377 0.6917375 0.0463158 5.076995 POLYGON ((-84.39447 33.3696…
13063040637 83 57744 1994 0.2026078 0.7527583 0.0000000 6.813540 POLYGON ((-84.34439 33.4426…
13063040638 NA 71227 3916 0.0957610 0.7870276 0.0490706 6.806965 POLYGON ((-84.40239 33.4264…
13063040639 NA 72147 3041 0.0368300 0.8096021 0.0997783 5.740024 POLYGON ((-84.38874 33.4479…
13089020100 163 168315 2063 0.9394086 0.0179350 0.0182328 7.545478 POLYGON ((-84.34843 33.7905…
13089020200 271 85673 1953 0.7275986 0.0363543 0.0291080 7.160683 POLYGON ((-84.34898 33.7710…
13089020300 18 153438 4468 0.8446732 0.0821397 0.0312305 7.753706 POLYGON ((-84.33998 33.7648…
13089020400 288 123711 2743 0.8877142 0.0174991 0.0221493 7.895815 POLYGON ((-84.34918 33.7599…
13089020500 622 73382 3347 0.4867045 0.3764565 0.0911300 7.594080 POLYGON ((-84.3492 33.74762…
13089020600 144 78564 2084 0.5043186 0.3627639 0.1074561 7.547040 POLYGON ((-84.3421 33.75343…
13089020700 170 63356 2528 0.5874209 0.2852057 0.2929533 7.598454 POLYGON ((-84.33042 33.7474…
13089020801 224 127500 2718 0.6475350 0.2167035 0.0142857 7.598170 POLYGON ((-84.32055 33.7498…
13089020802 1408 95417 4415 0.4525481 0.4779162 0.1024811 7.389579 POLYGON ((-84.31551 33.7426…
13089020901 1158 102279 2956 0.6214479 0.2804465 0.0944176 7.082882 POLYGON ((-84.34944 33.7222…
13089020902 625 67115 3112 0.4707584 0.4411954 0.1428571 7.419227 POLYGON ((-84.33942 33.7332…
13089021101 15 217917 4182 0.8268771 0.0222382 0.0000000 7.154166 POLYGON ((-84.34831 33.8909…
13089021103 72 123807 4873 0.7479992 0.1358506 0.0595533 7.598955 POLYGON ((-84.34831 33.8686…
13089021104 344 100446 1923 0.7186687 0.2277691 0.0941073 7.396896 POLYGON ((-84.3483 33.85763…
13089021204 802 26660 2878 0.2929117 0.0264072 0.4231275 6.418938 POLYGON ((-84.30971 33.8846…
13089021208 545 73393 5032 0.5894277 0.2062798 0.1116112 7.243538 POLYGON ((-84.32225 33.8785…
13089021210 190 180409 5343 0.9152162 0.0041175 0.0000000 6.735320 POLYGON ((-84.33291 33.9447…
13089021211 11 109375 4825 0.7842487 0.0623834 0.0036288 6.857724 POLYGON ((-84.3014 33.95818…
13089021213 46 174531 3509 0.9056711 0.0256483 0.0000000 7.058463 POLYGON ((-84.34783 33.9500…
13089021217 77 107059 2658 0.7091798 0.1666667 0.0482180 7.390873 POLYGON ((-84.29686 33.9201…
13089021219 NA 165750 4522 0.8827952 0.0479876 0.0350877 6.863635 POLYGON ((-84.34822 33.9027…
13089021220 22 128773 3741 0.7842823 0.1518311 0.0000000 7.306345 POLYGON ((-84.33118 33.9035…
13089021221 9 81786 2870 0.6665505 0.1055749 0.0185736 7.394197 POLYGON ((-84.34516 33.8977…
13089021222 261 73544 4847 0.6707242 0.2376728 0.1622060 7.376511 POLYGON ((-84.32796 33.8750…
13089021223 30 111214 1957 0.2738886 0.0097087 0.1671053 7.890305 POLYGON ((-84.33808 33.9387…
13089021224 252 50101 4127 0.4179792 0.3915677 0.0000000 7.521064 POLYGON ((-84.31311 33.9285…
13089021225 110 59923 2648 0.2960725 0.4138973 0.0318514 8.441202 POLYGON ((-84.31589 33.9257…
13089021226 110 80353 2631 0.3059673 0.3428354 0.0123111 7.622803 POLYGON ((-84.33819 33.9179…
13089021227 92 88688 5183 0.5587498 0.1192360 0.1100713 7.681574 POLYGON ((-84.33742 33.9315…
13089021228 121 240500 3235 0.8976816 0.0000000 0.0151246 7.100959 POLYGON ((-84.32605 33.9582…
13089021229 32 150305 3376 0.8281991 0.0056280 0.0000000 7.032391 POLYGON ((-84.33879 33.9693…
13089021230 379 100526 3791 0.3054603 0.0873121 0.0994475 7.327122 POLYGON ((-84.34791 33.915,…
13089021301 844 54079 3673 0.3727198 0.2502042 0.0575275 6.877645 POLYGON ((-84.30513 33.9202…
13089021305 247 57793 5536 0.4441835 0.1723266 0.1047495 7.691437 POLYGON ((-84.28694 33.9357…
13089021306 306 60549 5348 0.6336948 0.0878833 0.0526316 6.918929 POLYGON ((-84.29499 33.9197…
13089021307 311 62599 3993 0.4833459 0.0778863 0.0955766 7.006925 POLYGON ((-84.28745 33.8856…
13089021308 617 60521 3863 0.4105617 0.1286565 0.1495327 7.265386 POLYGON ((-84.30163 33.8665…
13089021309 42 40086 1951 0.4853921 0.1537673 0.1767068 7.451691 POLYGON ((-84.27221 33.9019…
13089021310 280 38629 4411 0.4722285 0.0319655 0.0916542 7.215134 POLYGON ((-84.2663 33.90724…
13089021405 287 126308 4696 0.8319847 0.0455707 0.0305175 7.573306 POLYGON ((-84.34838 33.8525…
13089021409 91 68578 3986 0.4801806 0.3667837 0.0803698 8.248856 POLYGON ((-84.30331 33.8496…
13089021410 296 67054 5961 0.6787452 0.1219594 0.0907407 7.683876 POLYGON ((-84.31549 33.8482…
13089021411 NA 121861 4018 0.8369836 0.0726730 0.0204499 7.791315 POLYGON ((-84.33859 33.8607…
13089021412 362 116864 3474 0.8341969 0.0299367 0.0000000 7.016858 POLYGON ((-84.32544 33.8764…
13089021415 335 118882 3866 0.7227108 0.0509571 0.0504110 7.541221 POLYGON ((-84.34848 33.8254…
13089021416 114 114539 2046 0.6749756 0.0610948 0.1442841 7.878888 POLYGON ((-84.33923 33.8448…
13089021417 393 64815 5394 0.4873934 0.1364479 0.1201514 7.946181 POLYGON ((-84.34329 33.8376…
13089021418 305 45366 2324 0.4462134 0.1738382 0.1493644 8.498699 POLYGON ((-84.32112 33.8471…
13089021419 155 63793 2047 0.2672203 0.4162189 0.1225166 8.069172 POLYGON ((-84.32359 33.8434…
13089021420 133 46842 1357 0.6204864 0.1068534 0.2615385 8.266967 POLYGON ((-84.32929 33.8478…
13089021421 222 72847 2546 0.6802828 0.1441477 0.1004184 8.311802 POLYGON ((-84.32842 33.8524…
13089021502 493 77996 4157 0.6925668 0.1650229 0.0235242 7.051744 POLYGON ((-84.34851 33.8251…
13089021503 226 58103 3618 0.6932007 0.1702598 0.0758197 7.542546 POLYGON ((-84.33527 33.8190…
13089021505 211 97361 3356 0.6236591 0.1388558 0.0334405 7.502657 POLYGON ((-84.33799 33.8024…
13089021506 265 107450 2580 0.4709302 0.2081395 0.0688905 7.213988 POLYGON ((-84.32232 33.8040…
13089021602 234 96473 3457 0.8660688 0.0506219 0.0537099 6.988681 POLYGON ((-84.31003 33.8076…
13089021604 153 193750 3317 0.8619234 0.0313536 0.0021383 6.856651 POLYGON ((-84.31189 33.8375…
13089021606 291 69865 3918 0.7611026 0.1814701 0.0855615 7.304329 POLYGON ((-84.32969 33.8275…
13089021607 40 76154 1626 0.6186962 0.1205412 0.1281755 7.218311 POLYGON ((-84.33458 33.8316…
13089021608 93 54653 3539 0.4704719 0.3359706 0.0559958 7.511807 POLYGON ((-84.30306 33.8495…
13089021609 20 133523 1711 0.6393922 0.1005260 0.0451011 6.881941 POLYGON ((-84.31307 33.8403…
13089021703 178 155156 4576 0.8081294 0.1215035 0.0215618 6.769964 POLYGON ((-84.29001 33.8376…
13089021707 113 111402 2651 0.8098831 0.0961901 0.0132325 6.906241 POLYGON ((-84.29149 33.8250…
13089021708 444 88750 3747 0.7736856 0.1262343 0.0288858 6.729449 POLYGON ((-84.27187 33.8342…
13089021709 130 63309 2461 0.5839090 0.2759041 0.0448065 6.928600 POLYGON ((-84.28834 33.8642…
13089021710 198 138342 2473 0.7492924 0.1083704 0.0000000 6.780556 POLYGON ((-84.27788 33.8677…
13089021711 176 52639 2699 0.6480178 0.0448314 0.0554217 6.909762 POLYGON ((-84.27254 33.8786…
13089021712 179 38984 2376 0.4629630 0.3762626 0.1336761 6.899258 POLYGON ((-84.27678 33.8732…
13089021808 55 96891 5069 0.5805879 0.2095088 0.0185067 7.414811 POLYGON ((-84.25262 33.8744…
13089021812 67 66713 2633 0.4861375 0.2442081 0.0733945 7.062490 POLYGON ((-84.25055 33.8955…
13089021813 28 45725 2286 0.2751531 0.6137358 0.0887338 8.382101 POLYGON ((-84.24408 33.9010…
13089021815 83 34840 4101 0.2138503 0.5610827 0.2497162 8.418527 POLYGON ((-84.24149 33.8959…
13089021816 272 68929 2461 0.5615603 0.1592848 0.0638767 7.387990 POLYGON ((-84.24701 33.8931…
13089021817 141 123864 3060 0.3532680 0.2683007 0.0000000 7.285070 POLYGON ((-84.23337 33.8251…
13089021818 189 74880 4566 0.5109505 0.3797635 0.0619213 6.989908 POLYGON ((-84.2372 33.83187…
13089021819 115 110503 2983 0.6744888 0.1196782 0.0007855 6.393773 POLYGON ((-84.24952 33.8678…
13089021820 312 63165 2410 0.2900415 0.5709544 0.0603829 7.314884 POLYGON ((-84.25899 33.8523…
13089021821 156 115662 2990 0.8678930 0.0578595 0.0366972 6.747669 POLYGON ((-84.25056 33.8678…
13089021822 315 81737 3789 0.8954869 0.0588546 0.0680147 6.609225 POLYGON ((-84.22314 33.8495…
13089021823 723 86846 4200 0.5007143 0.3754762 0.0148515 6.136874 POLYGON ((-84.20983 33.8535…
13089021824 334 35250 2548 0.4815542 0.4427002 0.0396733 6.937450 POLYGON ((-84.21376 33.8344…
13089021906 264 44316 5824 0.0880838 0.8229739 0.1139037 7.536172 POLYGON ((-84.18701 33.8060…
13089021908 547 43191 4829 0.0668876 0.6974529 0.1745236 7.240982 POLYGON ((-84.20528 33.8100…
13089021910 531 41647 6871 0.1272013 0.7841653 0.1093414 7.530441 POLYGON ((-84.2231 33.82203…
13089021911 328 30901 2636 0.0352807 0.9286798 0.1920000 7.942865 POLYGON ((-84.1959 33.82775…
13089021912 NA 163750 3620 0.6011050 0.2875691 0.0172802 5.784920 POLYGON ((-84.18252 33.8336…
13089021913 268 32500 4215 0.1715302 0.7618031 0.2211838 7.251126 POLYGON ((-84.19058 33.8237…
13089021914 148 34818 3389 0.1968132 0.7822366 0.1293333 6.427190 POLYGON ((-84.187 33.80622,…
13089021915 NA 77969 4585 0.1847328 0.7677208 0.0783562 5.550518 POLYGON ((-84.16649 33.8197…
13089021916 175 45469 2815 0.1840142 0.7978686 0.1216327 7.443220 POLYGON ((-84.22419 33.7857…
13089021917 363 34936 3567 0.0815812 0.9035604 0.1256788 7.573610 POLYGON ((-84.21181 33.7932…
13089022001 416 76563 4779 0.7137476 0.1607031 0.0722826 6.990128 POLYGON ((-84.26292 33.8225…
13089022005 797 41526 4939 0.1508403 0.6973071 0.1175373 7.316618 POLYGON ((-84.24854 33.7832…
13089022007 286 40656 3920 0.0750000 0.5224490 0.1047813 8.086217 POLYGON ((-84.25172 33.8157…
13089022010 NA 62167 2247 0.1855808 0.3698264 0.0780255 7.482029 POLYGON ((-84.23802 33.8087…
13089022011 112 36972 6538 0.0870297 0.6131845 0.1947616 8.453206 POLYGON ((-84.2385 33.80235…
13089022012 91 28555 2734 0.0482809 0.3211412 0.2034525 8.039246 POLYGON ((-84.24738 33.7974…
13089022013 226 42008 3153 0.0751665 0.8870917 0.1072523 8.027335 POLYGON ((-84.2411 33.82037…
13089022014 192 36128 2683 0.0115542 0.7577339 0.1073025 8.254694 POLYGON ((-84.24683 33.8184…
13089022015 65 52917 2457 0.1514042 0.5852666 0.0500000 7.327220 POLYGON ((-84.22915 33.8015…
13089022016 155 48894 3693 0.0674249 0.6918494 0.0248447 7.478579 POLYGON ((-84.2208 33.79885…
13089022100 495 47278 3846 0.2254290 0.5553822 0.1100652 7.028498 POLYGON ((-84.26798 33.7794…
13089022203 1142 74386 2308 0.4627383 0.3331889 0.1737557 6.696034 POLYGON ((-84.28955 33.7875…
13089022205 310 69524 4830 0.4695652 0.1554865 0.0915842 7.780405 POLYGON ((-84.27044 33.8094…
13089022206 554 70491 2941 0.4372662 0.2057123 0.1246106 7.232280 POLYGON ((-84.28377 33.7920…
13089022302 385 86368 3620 0.6795580 0.1480663 0.0469108 6.936371 POLYGON ((-84.30558 33.8018…
13089022303 159 88804 3370 0.7821958 0.0982196 0.0468370 7.233878 POLYGON ((-84.29708 33.7930…
13089022304 253 57073 2921 0.5724067 0.1051010 0.0887728 7.354017 POLYGON ((-84.30908 33.7877…
13089022401 365 118924 4230 0.7614657 0.0290780 0.0047745 7.375978 POLYGON ((-84.34866 33.7829…
13089022403 586 204167 3930 0.9203562 0.0279898 0.0153734 6.696103 POLYGON ((-84.33713 33.7810…
13089022404 450 35323 3756 0.5167732 0.2505325 0.2356389 7.692300 POLYGON ((-84.33573 33.8015…
13089022405 81 53631 3156 0.5038023 0.2237009 0.0480769 7.642799 POLYGON ((-84.32378 33.7985…
13089022501 661 82885 4538 0.5011018 0.3428823 0.1750000 8.145518 POLYGON ((-84.31184 33.7674…
13089022502 144 181144 2974 0.9340955 0.0067249 0.0653595 7.552526 POLYGON ((-84.31382 33.7800…
13089022601 757 77900 4538 0.7661966 0.1275892 0.1949153 7.654560 POLYGON ((-84.30625 33.7866…
13089022602 145 173525 2170 0.7235023 0.0552995 0.0505618 7.705838 POLYGON ((-84.29014 33.7866…
13089022700 375 144167 5406 0.6831299 0.1888642 0.0472579 7.784732 POLYGON ((-84.31233 33.7568…
13089022800 789 118056 4543 0.6876513 0.1494607 0.0000000 7.526421 POLYGON ((-84.2965 33.76973…
13089022900 475 89844 3777 0.7370929 0.2186921 0.0679612 6.879657 POLYGON ((-84.29081 33.7470…
13089023000 22 90694 2226 0.8706199 0.0718778 0.0725076 7.132769 POLYGON ((-84.2764 33.77618…
13089023101 940 58889 4600 0.2454348 0.7123913 0.0894919 7.170429 POLYGON ((-84.28956 33.7447…
13089023102 589 40016 3293 0.3862739 0.5025812 0.2889499 7.171098 POLYGON ((-84.27065 33.7565…
13089023107 835 57500 4009 0.2309803 0.7113994 0.1365360 6.970875 POLYGON ((-84.26769 33.7548…
13089023108 742 33333 4372 0.0892040 0.8577310 0.1733728 7.076085 POLYGON ((-84.24381 33.7409…
13089023111 587 46367 2320 0.0961207 0.8120690 0.0348993 6.885537 POLYGON ((-84.23271 33.7689…
13089023112 377 29762 4252 0.0587959 0.8473659 0.3036169 7.451896 POLYGON ((-84.25372 33.7710…
13089023113 832 30888 2692 0.2938336 0.5776374 0.1489362 7.173464 POLYGON ((-84.26747 33.7762…
13089023114 220 43333 3705 0.1263158 0.7654521 0.1358696 7.337772 POLYGON ((-84.24126 33.7780…
13089023209 251 67857 5748 0.0523660 0.9154489 0.0078125 7.102933 POLYGON ((-84.18113 33.7747…
13089023211 146 58144 3906 0.0133129 0.9252432 0.0994916 7.356584 POLYGON ((-84.196 33.74481,…
13089023212 399 67115 3924 0.0254842 0.9390928 0.0383598 7.013220 POLYGON ((-84.18651 33.7273…
13089023213 644 44583 7099 0.0346528 0.9040710 0.1078520 7.240401 POLYGON ((-84.21738 33.7116…
13089023214 891 49650 5015 0.0269192 0.9700897 0.1450075 6.631558 POLYGON ((-84.19972 33.7181…
13089023215 793 43457 4882 0.0942237 0.7613683 0.1545396 7.259603 POLYGON ((-84.22322 33.7607…
13089023216 295 56086 4240 0.0325472 0.9674528 0.0899345 7.003390 POLYGON ((-84.21872 33.7438…
13089023217 279 53750 4682 0.0311833 0.9568560 0.0312046 7.345235 POLYGON ((-84.18936 33.7594…
13089023218 105 26771 3034 0.0362558 0.8559657 0.3642144 7.984675 POLYGON ((-84.19737 33.7494…
13089023219 82 56616 3916 0.0789070 0.8143514 0.0557103 7.216083 POLYGON ((-84.22474 33.7857…
13089023220 592 55291 3198 0.1247655 0.7620388 0.1037549 6.719787 POLYGON ((-84.21998 33.7649…
13089023221 136 50467 2958 0.0655849 0.6788371 0.0235183 7.140010 POLYGON ((-84.18931 33.7599…
13089023222 260 38181 4295 0.0295693 0.9117579 0.2352217 7.507231 POLYGON ((-84.19665 33.7618…
13089023311 NA 70049 5050 0.0291089 0.9241584 0.0920000 6.929645 POLYGON ((-84.12844 33.7790…
13089023313 166 54281 5772 0.0112613 0.9570340 0.0368520 7.066413 POLYGON ((-84.14726 33.7271…
13089023315 NA 77545 6422 0.0537216 0.8900654 0.0135070 5.607132 POLYGON ((-84.10817 33.7580…
13089023317 517 23909 3248 0.1019089 0.8771552 0.1169786 5.621769 POLYGON ((-84.1244 33.71419…
13089023318 128 79112 3369 0.0516474 0.8397150 0.0290262 6.043798 POLYGON ((-84.11111 33.7268…
13089023319 381 48520 2719 0.0180213 0.9599117 0.2745439 6.629642 POLYGON ((-84.17023 33.7035…
13089023320 599 30009 3511 0.0264882 0.8564512 0.1459988 7.043138 POLYGON ((-84.14652 33.7135…
13089023321 240 54028 4257 0.0000000 0.9962415 0.4098798 8.348713 POLYGON ((-84.14697 33.7036…
13089023322 123 50488 3241 0.0394940 0.8929343 0.0803059 7.598289 POLYGON ((-84.16196 33.7846…
13089023323 NA 74698 3849 0.0059756 0.9916862 0.0345722 6.921176 POLYGON ((-84.1539 33.78837…
13089023324 105 76447 3170 0.0047319 0.9539432 0.0329670 6.842420 POLYGON ((-84.16272 33.7719…
13089023325 NA 83542 4793 0.0402671 0.9081995 0.0335443 7.037486 POLYGON ((-84.10304 33.7799…
13089023326 NA 74832 4391 0.0241403 0.8856752 0.0240783 7.810253 POLYGON ((-84.10354 33.7802…
13089023327 205 47083 7204 0.0192948 0.9745974 0.0288238 7.910533 POLYGON ((-84.16771 33.7313…
13089023328 87 62083 4477 0.0142953 0.9267367 0.0961538 7.474851 POLYGON ((-84.14883 33.7251…
13089023329 166 63893 4002 0.0357321 0.9265367 0.0189873 6.404691 POLYGON ((-84.16446 33.7629…
13089023330 186 84057 4318 0.0067161 0.9925892 0.0122411 6.624346 POLYGON ((-84.13199 33.7448…
13089023331 76 53022 3269 0.0229428 0.9749159 0.0813226 6.970948 POLYGON ((-84.16937 33.7369…
13089023332 323 63484 3166 0.0394820 0.9071383 0.0444874 7.283472 POLYGON ((-84.1676 33.73954…
13089023410 586 41065 3903 0.0335639 0.9126313 0.2026854 7.095201 POLYGON ((-84.29762 33.7135…
13089023411 281 46615 3806 0.0349448 0.9540200 0.1267788 7.172650 POLYGON ((-84.30514 33.7146…
13089023413 94 72283 4173 0.0400192 0.9300264 0.0000000 6.930069 POLYGON ((-84.25772 33.6975…
13089023422 386 59798 5945 0.0206897 0.9698907 0.0531023 6.478797 POLYGON ((-84.28649 33.6574…
13089023424 406 61875 5024 0.0577229 0.9275478 0.0620934 6.562497 POLYGON ((-84.30877 33.6731…
13089023425 NA 63103 6293 0.0649928 0.8906722 0.0200093 7.098628 POLYGON ((-84.2494 33.68071…
13089023426 NA 60879 4383 0.0207620 0.9297285 0.0123077 6.678813 POLYGON ((-84.21529 33.6711…
13089023427 NA 69202 3035 0.0685338 0.8915980 0.0227273 6.497890 POLYGON ((-84.17577 33.6816…
13089023429 56 31313 4048 0.0091403 0.9498518 0.0499316 6.828020 POLYGON ((-84.15292 33.6844…
13089023430 164 31091 4278 0.0128565 0.9871435 0.0736906 7.708741 POLYGON ((-84.16489 33.7033…
13089023431 233 43889 1889 0.0010588 0.9264161 0.0328358 7.120300 POLYGON ((-84.17563 33.6871…
13089023432 NA 80851 3373 0.2190928 0.7293211 0.0000000 5.820798 POLYGON ((-84.18768 33.6533…
13089023433 NA 51903 4563 0.0000000 0.6982249 0.0000000 5.950106 POLYGON ((-84.15691 33.6514…
13089023434 NA 84531 4068 0.2146018 0.7699115 0.0000000 5.583210 POLYGON ((-84.12965 33.6362…
13089023435 NA 46760 2926 0.0341763 0.9658237 0.0000000 6.627764 POLYGON ((-84.11485 33.6759…
13089023436 164 65104 3326 0.0396873 0.9428743 0.0000000 6.967644 POLYGON ((-84.25392 33.6470…
13089023437 56 74302 6672 0.0215827 0.9018285 0.0167814 6.484389 POLYGON ((-84.25392 33.6470…
13089023438 262 54228 5437 0.0130587 0.9174177 0.0870445 7.365924 POLYGON ((-84.27759 33.6735…
13089023439 314 31006 2301 0.0352021 0.9204694 0.2973262 6.701147 POLYGON ((-84.27258 33.6845…
13089023440 653 49587 2915 0.0915952 0.9084048 0.2294469 5.669765 POLYGON ((-84.14874 33.6735…
13089023441 NA 62542 3214 0.0270691 0.9303049 0.0000000 6.315860 POLYGON ((-84.19719 33.6654…
13089023442 260 71016 2963 0.0212622 0.9595005 0.0132341 6.680142 POLYGON ((-84.20098 33.6856…
13089023443 289 84671 5951 0.0211729 0.9305999 0.0218471 6.626807 POLYGON ((-84.32418 33.6534…
13089023444 588 81654 2150 0.1195349 0.7813953 0.0000000 4.951963 POLYGON ((-84.35022 33.6479…
13089023445 498 46577 4224 0.0132576 0.8307292 0.0513236 6.841659 POLYGON ((-84.25155 33.7002…
13089023446 673 36522 1768 0.0158371 0.9739819 0.1137371 6.435508 POLYGON ((-84.27176 33.7125…
13089023447 NA 62589 3214 0.1060983 0.8378967 0.0679456 6.992551 POLYGON ((-84.23003 33.6813…
13089023448 153 63829 3550 0.0214085 0.9397183 0.1771385 6.805102 POLYGON ((-84.22334 33.6976…
13089023501 616 34032 4115 0.0583232 0.8826245 0.1245944 7.491442 POLYGON ((-84.28692 33.7367…
13089023504 513 40330 3368 0.0671021 0.9008314 0.1153846 7.340300 POLYGON ((-84.28134 33.7295…
13089023505 188 38497 3288 0.0504866 0.9093674 0.1200387 7.308351 POLYGON ((-84.26589 33.7290…
13089023506 1029 50173 7363 0.0685862 0.8891756 0.0954145 7.223210 POLYGON ((-84.25244 33.7162…
13089023507 354 43782 4252 0.0021167 0.9111007 0.0845176 7.079451 POLYGON ((-84.23696 33.7142…
13089023601 445 73287 2875 0.3001739 0.6455652 0.0381206 7.370915 POLYGON ((-84.30967 33.7325…
13089023602 375 45333 1977 0.0940819 0.8866970 0.1014085 6.583371 POLYGON ((-84.30799 33.7268…
13089023603 435 39743 4259 0.0880488 0.8715661 0.0917679 7.275785 POLYGON ((-84.29784 33.715,…
13089023701 318 45238 2595 0.2466281 0.7117534 0.2264493 6.880882 POLYGON ((-84.32939 33.7398…
13089023702 470 33438 3311 0.1038961 0.8568408 0.0792891 7.335361 POLYGON ((-84.32393 33.7245…
13089023801 330 84209 4495 0.3243604 0.5944383 0.0536560 6.933329 POLYGON ((-84.34948 33.7176…
13089023802 535 64772 4166 0.2498800 0.6589054 0.1597173 6.068092 POLYGON ((-84.34951 33.7092…
13089023803 659 65517 6263 0.1615839 0.7475651 0.0554511 7.147627 POLYGON ((-84.32988 33.7172…
13121000100 539 142092 5505 0.8882834 0.0212534 0.0000000 7.407047 POLYGON ((-84.36636 33.8049…
13121000201 250 112849 2097 0.9399142 0.0319504 0.0000000 7.392836 POLYGON ((-84.37421 33.8010…
13121000202 280 171042 3882 0.8639876 0.0321999 0.0050473 7.797897 POLYGON ((-84.37027 33.7844…
13121000400 799 121681 1859 0.8811189 0.0753093 0.1002893 7.057467 POLYGON ((-84.38781 33.7866…
13121000501 288 90702 3098 0.6162040 0.1943189 0.0693674 7.811382 POLYGON ((-84.40086 33.7927…
13121000502 48 108641 1821 0.7803405 0.1532125 0.0464576 6.779363 POLYGON ((-84.39121 33.7986…
13121000601 436 61830 4564 0.5429448 0.1763804 0.1680614 8.409725 POLYGON ((-84.4149 33.78202…
13121000602 157 46917 3637 0.3390157 0.2829255 0.1652224 9.028054 POLYGON ((-84.40752 33.7876…
13121000700 627 61250 3323 0.2922058 0.5865182 0.1253406 7.539853 POLYGON ((-84.43199 33.7836…
13121001001 189 84655 3229 0.5682874 0.1430784 0.1244444 8.154654 POLYGON ((-84.39915 33.7815…
13121001002 444 46346 7401 0.4577760 0.2692879 0.1768293 8.331928 POLYGON ((-84.41297 33.7799…
13121001101 60 107129 2699 0.7547240 0.0837347 0.0393956 9.483335 POLYGON ((-84.38782 33.7845…
13121001102 90 145208 2840 0.8165493 0.0401408 0.1650535 9.234645 POLYGON ((-84.38784 33.7819…
13121001203 146 65121 2775 0.7016216 0.2014414 0.1798156 9.272132 POLYGON ((-84.38344 33.7712…
13121001204 24 90040 1845 0.7967480 0.0292683 0.1866776 8.703528 POLYGON ((-84.38296 33.7760…
13121001205 447 73005 1690 0.6905325 0.1260355 0.1360438 8.758152 POLYGON ((-84.38742 33.7712…
13121001206 315 91997 3160 0.7031646 0.0639241 0.1578479 9.651752 POLYGON ((-84.3873 33.78018…
13121001301 108 61652 2782 0.7703091 0.1764917 0.2239546 8.628994 POLYGON ((-84.3777 33.77255…
13121001302 617 103381 1848 0.6282468 0.3079004 0.0514632 7.722870 POLYGON ((-84.37774 33.7712…
13121001400 182 82086 2291 0.8227848 0.0737669 0.0429577 8.064774 POLYGON ((-84.36732 33.7805…
13121001501 459 57036 2297 0.7914671 0.1654332 0.1172932 8.358195 POLYGON ((-84.35989 33.7728…
13121001502 173 68776 2040 0.8450980 0.0181373 0.0228175 8.143273 POLYGON ((-84.35872 33.7754…
13121001600 153 97623 2322 0.8122308 0.0594315 0.0770370 7.831690 POLYGON ((-84.36347 33.7702…
13121001701 422 72936 1908 0.4910901 0.4690776 0.1809101 8.111442 POLYGON ((-84.37428 33.7613…
13121001702 128 102754 3507 0.7895637 0.1904762 0.0123928 8.559083 POLYGON ((-84.36784 33.7613…
13121001802 116 64803 2219 0.4934655 0.3578188 0.1661280 8.322255 POLYGON ((-84.38416 33.7622…
13121001901 50 25378 3427 0.4280712 0.2640794 0.1734104 10.088672 POLYGON ((-84.39305 33.7659…
13121001902 312 60417 2056 0.2947471 0.5870623 0.1851852 7.787444 POLYGON ((-84.39056 33.7597…
13121002100 391 83151 2245 0.3082405 0.5701559 0.1308951 7.937007 POLYGON ((-84.40021 33.7707…
13121002300 268 28611 1384 0.0455202 0.9342486 0.4362416 7.117885 POLYGON ((-84.4255 33.76862…
13121002400 284 26919 3025 0.0555372 0.9160331 0.2854701 7.714920 POLYGON ((-84.43333 33.7537…
13121002500 399 33615 3175 0.0532283 0.8488189 0.4777293 8.199646 POLYGON ((-84.41755 33.7547…
13121002600 253 24623 1498 0.0333778 0.9198932 0.3483755 7.356006 POLYGON ((-84.40786 33.7547…
13121002801 10 69340 3909 0.3773344 0.5090816 0.1097436 9.392014 POLYGON ((-84.38223 33.7571…
13121002802 254 25054 1487 0.2185609 0.6913248 0.3901193 8.175594 POLYGON ((-84.38431 33.7544…
13121002900 217 82727 2232 0.5483871 0.3418459 0.1385643 8.041830 POLYGON ((-84.37438 33.7543…
13121003000 243 128024 3679 0.7841805 0.0793694 0.0322234 8.009727 POLYGON ((-84.36725 33.7523…
13121003100 416 82309 2290 0.5781659 0.3930131 0.2565947 7.938450 POLYGON ((-84.35818 33.7465…
13121003200 230 111114 2346 0.7766411 0.0745951 0.0505837 7.689748 POLYGON ((-84.37519 33.7468…
13121003500 1893 51474 2468 0.2504052 0.6604538 0.2925293 7.471820 POLYGON ((-84.40013 33.7472…
13121003600 129 68859 1132 0.1678445 0.7871025 0.3281075 7.979049 POLYGON ((-84.40658 33.7491…
13121003700 36 36288 176 0.0000000 0.8806818 0.2397260 7.486766 POLYGON ((-84.41132 33.7493…
13121003800 342 20952 4377 0.2092758 0.6047521 0.3983740 8.563480 POLYGON ((-84.41756 33.7465…
13121003900 444 37292 2011 0.0124316 0.9627051 0.2516026 7.769911 POLYGON ((-84.42954 33.7473…
13121004000 839 33177 2677 0.0683601 0.9013821 0.2333637 7.415303 POLYGON ((-84.44607 33.7506…
13121004100 400 62545 2318 0.1682485 0.7471959 0.0973451 7.520263 POLYGON ((-84.43507 33.7409…
13121004200 1559 23906 2675 0.0942056 0.9057944 0.4666667 7.679514 POLYGON ((-84.42342 33.7333…
13121004300 243 61066 2703 0.1886792 0.7214206 0.2731707 8.385021 POLYGON ((-84.41754 33.7454…
13121004400 302 24297 3105 0.0421900 0.8911433 0.4717251 8.227663 POLYGON ((-84.40717 33.7409…
13121004800 87 14654 1088 0.0698529 0.8143382 0.3801653 7.971209 POLYGON ((-84.38779 33.7418…
13121004900 294 91563 2884 0.5305132 0.3675451 0.1481481 7.860602 POLYGON ((-84.38787 33.7368…
13121005000 293 78732 2651 0.5997737 0.2983780 0.1102776 7.576211 POLYGON ((-84.3736 33.74162…
13121005200 655 132143 4899 0.7458665 0.1353337 0.0090090 7.676252 POLYGON ((-84.36335 33.7275…
13121005300 386 109068 3927 0.6437484 0.2508276 0.0674406 7.485032 POLYGON ((-84.37996 33.7303…
13121005501 456 36853 3036 0.1851120 0.7598814 0.1931707 7.839655 POLYGON ((-84.38806 33.7218…
13121005503 195 19679 1071 0.0000000 1.0000000 0.2888889 7.493463 POLYGON ((-84.39351 33.7087…
13121005504 394 51731 1347 0.1484781 0.8515219 0.1690909 7.069770 POLYGON ((-84.39342 33.7176…
13121005700 342 31500 1400 0.0185714 0.9421429 0.2574751 7.533971 POLYGON ((-84.40809 33.7319…
13121005800 416 48235 1253 0.2051077 0.5865922 0.1697417 6.906639 POLYGON ((-84.41692 33.7279…
13121006000 563 42325 3686 0.0759631 0.8974498 0.2087077 7.763735 POLYGON ((-84.4475 33.7337,…
13121006100 617 30540 3745 0.0408545 0.9401869 0.1835397 7.425458 POLYGON ((-84.45025 33.7232…
13121006200 156 52000 2025 0.0498765 0.6380247 0.1812500 7.564168 POLYGON ((-84.42743 33.7222…
13121006300 451 36143 1668 0.0497602 0.8986811 0.3693820 7.132376 POLYGON ((-84.40791 33.7257…
13121006400 230 41000 902 0.3314856 0.5221729 0.3390244 6.587161 POLYGON ((-84.37988 33.7173…
13121006500 486 53409 3871 0.2386980 0.7222940 0.1146732 7.074525 POLYGON ((-84.41808 33.7183…
13121006601 593 49432 1658 0.2310012 0.7117008 0.2199108 6.769489 POLYGON ((-84.4282 33.70142…
13121006602 532 25568 875 0.0045714 0.9805714 0.4262735 7.240335 POLYGON ((-84.43385 33.7145…
13121006701 432 25958 2938 0.0435671 0.9455412 0.2897603 8.107335 POLYGON ((-84.40354 33.7052…
13121006702 562 35313 1782 0.0134680 0.9079686 0.2033462 6.556279 POLYGON ((-84.40465 33.6971…
13121006802 85 13750 2040 0.0235294 0.9495098 0.6015474 7.907642 POLYGON ((-84.36608 33.7035…
13121006900 673 76731 3297 0.5344252 0.4046103 0.1269727 6.951093 POLYGON ((-84.36861 33.7138…
13121007001 679 30323 4243 0.0332312 0.8750884 0.2116586 6.850273 POLYGON ((-84.40463 33.6953…
13121007002 868 45033 3126 0.0220729 0.9481766 0.1327986 6.568504 POLYGON ((-84.38551 33.7018…
13121007100 617 25208 2663 0.0904994 0.9031168 0.2085506 6.989150 POLYGON ((-84.36577 33.6969…
13121007301 525 40344 4444 0.0450045 0.8242574 0.1241343 7.158712 POLYGON ((-84.3984 33.68111…
13121007302 661 19118 3216 0.0223881 0.9008085 0.3874388 6.642847 POLYGON ((-84.3842 33.67641…
13121007400 736 22287 3438 0.0706806 0.7774869 0.3788368 7.293261 POLYGON ((-84.41833 33.6731…
13121007500 926 24301 2997 0.1077744 0.8481815 0.3637021 6.791732 POLYGON ((-84.42959 33.6975…
13121007602 1028 38219 2979 0.0352467 0.9469621 0.1766438 6.789052 POLYGON ((-84.47685 33.7061…
13121007603 1034 14630 3943 0.0256150 0.9492772 0.5637181 7.137036 POLYGON ((-84.45734 33.6991…
13121007604 320 25673 3265 0.0986217 0.8554364 0.3035413 7.976336 POLYGON ((-84.47514 33.7006…
13121007703 681 39944 3906 0.0186892 0.9559652 0.1531830 6.757989 POLYGON ((-84.51839 33.6996…
13121007705 1086 30401 4737 0.0048554 0.9845894 0.2066787 7.260349 POLYGON ((-84.49965 33.6811…
13121007707 516 49597 2326 0.0077386 0.9643164 0.1342685 6.513634 POLYGON ((-84.5023 33.71868…
13121007708 855 57258 3574 0.0097929 0.9843313 0.2418256 6.964771 POLYGON ((-84.4906 33.71011…
13121007709 498 84355 4192 0.0725191 0.8525763 0.1508678 7.093345 POLYGON ((-84.52282 33.6640…
13121007710 234 26373 2647 0.0264450 0.9641103 0.3887455 5.870891 POLYGON ((-84.54761 33.6694…
13121007711 1027 46000 3040 0.0108553 0.9891447 0.2396352 7.161749 POLYGON ((-84.51732 33.6905…
13121007805 1345 48641 4771 0.0980926 0.8924754 0.3848299 5.751133 POLYGON ((-84.56838 33.7434…
13121007806 956 49101 6524 0.0254445 0.9678112 0.0696849 7.169233 POLYGON ((-84.52796 33.7492…
13121007807 534 32543 4637 0.0129394 0.9618288 0.3557047 7.380431 POLYGON ((-84.51322 33.7685…
13121007808 901 13577 3728 0.0000000 0.9796137 0.4946939 7.731596 POLYGON ((-84.51035 33.7407…
13121007809 256 52191 4736 0.0061233 0.9634713 0.1214689 6.466679 POLYGON ((-84.55876 33.7084…
13121007810 446 39647 5114 0.0089949 0.9360579 0.0683845 6.708765 POLYGON ((-84.5346 33.71305…
13121007900 1010 73473 5432 0.0528351 0.9136598 0.0825109 6.466654 POLYGON ((-84.51104 33.7255…
13121008000 1224 40673 5760 0.0434028 0.9020833 0.2026621 6.877314 POLYGON ((-84.47503 33.7351…
13121008103 2402 26107 3448 0.0336427 0.9422854 0.2279924 7.194918 POLYGON ((-84.4997 33.75074…
13121008104 769 36983 4016 0.0164343 0.9621514 0.1713748 6.586233 POLYGON ((-84.47922 33.7410…
13121008202 303 16442 2550 0.0415686 0.9545098 0.3420159 5.887336 POLYGON ((-84.53355 33.7791…
13121008203 544 30288 2589 0.0436462 0.9563538 0.4419263 7.148416 POLYGON ((-84.49209 33.7813…
13121008204 858 42414 3202 0.0053092 0.9681449 0.2093373 6.896587 POLYGON ((-84.49605 33.7741…
13121008301 1119 27340 2670 0.0883895 0.8468165 0.3523062 6.920728 POLYGON ((-84.47194 33.7691…
13121008302 403 28214 1891 0.0174511 0.9709149 0.2978056 6.915210 POLYGON ((-84.46313 33.7552…
13121008400 892 21667 3008 0.1233378 0.8567154 0.2553066 7.428693 POLYGON ((-84.44438 33.7538…
13121008500 1078 30151 2040 0.0558824 0.9284314 0.2247043 6.303700 POLYGON ((-84.45972 33.7891…
13121008601 1143 19344 5154 0.0168801 0.9827319 0.4476835 7.036909 POLYGON ((-84.47662 33.7808…
13121008602 507 35804 1572 0.0553435 0.8931298 0.2955752 5.844880 POLYGON ((-84.50554 33.7945…
13121008701 729 38654 3897 0.1147036 0.8090839 0.3490427 6.838287 POLYGON ((-84.4933 33.80597…
13121008702 219 46917 2188 0.1910420 0.8007313 0.1633011 6.378027 POLYGON ((-84.46126 33.8054…
13121008801 321 134338 3041 0.4182835 0.2295298 0.0306435 6.894745 POLYGON ((-84.48896 33.8128…
13121008802 498 139417 3171 0.6174708 0.2257963 0.0761062 6.170676 POLYGON ((-84.47202 33.8085…
13121008903 473 79957 2643 0.3121453 0.3859251 0.0747232 7.733245 POLYGON ((-84.45743 33.8234…
13121008905 1147 98681 4976 0.5908360 0.3319936 0.0111227 6.833506 POLYGON ((-84.43732 33.8054…
13121008906 165 166676 2383 0.8694922 0.0453210 0.0965971 7.024989 POLYGON ((-84.45588 33.8257…
13121008907 39 69722 3122 0.7722614 0.1857783 0.0000000 8.104381 POLYGON ((-84.43057 33.8169…
13121008908 192 59094 1908 0.4559748 0.5157233 0.0790021 7.548710 POLYGON ((-84.41601 33.7996…
13121008909 100 83862 1663 0.8177992 0.1822008 0.0242261 7.675473 POLYGON ((-84.42694 33.8103…
13121009001 68 64000 2307 0.6302557 0.1920243 0.0963235 7.752570 POLYGON ((-84.41874 33.8101…
13121009002 232 250001 2872 0.9369777 0.0100975 0.0000000 7.175722 POLYGON ((-84.42196 33.8173…
13121009103 148 84000 3382 0.5990538 0.2057954 0.0712074 8.460401 POLYGON ((-84.40307 33.8099…
13121009104 269 78733 2498 0.7822258 0.1297038 0.1141848 7.817523 POLYGON ((-84.40334 33.8135…
13121009105 87 217961 1290 0.8914729 0.0000000 0.0000000 7.530535 POLYGON ((-84.39381 33.8055…
13121009106 201 63320 2114 0.4602649 0.1967833 0.2193548 7.758902 POLYGON ((-84.39225 33.8080…
13121009201 191 48750 1899 0.6650869 0.1574513 0.1541756 7.967615 POLYGON ((-84.35738 33.8111…
13121009202 321 91026 3182 0.5204274 0.3922062 0.0195599 7.671193 POLYGON ((-84.37766 33.8087…
13121009203 174 69935 2157 0.4636069 0.4432082 0.2137887 7.343862 POLYGON ((-84.36676 33.8114…
13121009301 145 101641 4136 0.8116538 0.0258704 0.0445040 8.049143 POLYGON ((-84.39004 33.8145…
13121009302 28 74342 1962 0.9306830 0.0178389 0.1069418 7.443005 POLYGON ((-84.38058 33.8186…
13121009405 407 69097 4268 0.4109653 0.2731959 0.2184488 8.651805 POLYGON ((-84.37395 33.8157…
13121009406 231 74152 1547 0.5203620 0.2462831 0.0760346 7.823576 POLYGON ((-84.36755 33.8206…
13121009407 80 72816 1076 0.3457249 0.3485130 0.0000000 8.935897 POLYGON ((-84.35852 33.8248…
13121009408 138 49861 1718 0.4918510 0.3218859 0.2308333 8.111070 POLYGON ((-84.36714 33.8274…
13121009409 150 68829 2171 0.4735145 0.2459696 0.3086817 8.326379 POLYGON ((-84.36158 33.8406…
13121009410 39 81821 3500 0.8071429 0.0711429 0.0290742 8.418530 POLYGON ((-84.3583 33.84518…
13121009411 150 82135 2468 0.5948136 0.1754457 0.0183959 7.551518 POLYGON ((-84.35813 33.8368…
13121009501 243 175769 3402 0.9741329 0.0120517 0.0361011 6.620236 POLYGON ((-84.40761 33.8203…
13121009503 180 47031 1447 0.6171389 0.2550104 0.3070342 8.352464 POLYGON ((-84.38928 33.8334…
13121009504 90 91886 2271 0.6842801 0.2012329 0.0568910 7.313926 POLYGON ((-84.39538 33.8440…
13121009601 359 118045 3209 0.7014646 0.0856965 0.0189911 8.267973 POLYGON ((-84.38303 33.8506…
13121009604 174 82917 2642 0.8357305 0.0995458 0.0054348 7.572949 POLYGON ((-84.38739 33.8286…
13121009605 225 90294 2491 0.6439181 0.2472902 0.1614583 8.508600 POLYGON ((-84.38134 33.8370…
13121009606 425 236635 1381 0.9167270 0.0000000 0.0000000 6.732312 POLYGON ((-84.36899 33.8389…
13121009607 116 97344 3937 0.6903734 0.2118364 0.1391519 8.597763 POLYGON ((-84.36064 33.8513…
13121009700 36 250001 3952 0.8464069 0.0900810 0.0191713 5.896929 POLYGON ((-84.46032 33.8389…
13121009802 107 152750 4087 0.8128211 0.0897969 0.0609687 5.942090 POLYGON ((-84.45176 33.8653…
13121009804 179 250001 2499 0.8791517 0.1016407 0.0000000 6.662882 POLYGON ((-84.42914 33.8374…
13121009900 240 187788 4939 0.9629480 0.0036445 0.0000000 6.450465 POLYGON ((-84.40844 33.8713…
13121010003 352 122784 3175 0.7874016 0.0737008 0.0603123 7.325585 POLYGON ((-84.38267 33.8541…
13121010004 118 250001 2385 0.6498952 0.1157233 0.0000000 7.216281 POLYGON ((-84.38106 33.8670…
13121010005 NA 250001 2983 0.9423399 0.0117332 0.0355086 6.514294 POLYGON ((-84.36971 33.8575…
13121010006 208 82818 3547 0.7301945 0.1547787 0.1385847 8.596460 POLYGON ((-84.36993 33.8519…
13121010007 174 250001 1831 0.9087930 0.0174768 0.0235294 7.106890 POLYGON ((-84.36785 33.8560…
13121010106 NA 85174 3914 0.7560041 0.1882984 0.0000000 6.351459 POLYGON ((-84.34046 33.9822…
13121010107 NA 215417 1886 0.9416755 0.0137858 0.0000000 5.868050 POLYGON ((-84.32088 33.9785…
13121010108 22 113125 4543 0.8283073 0.0482060 0.0815098 6.814337 POLYGON ((-84.3025 33.96007…
13121010115 85 134318 2776 0.7229827 0.1217579 0.0352113 6.636766 POLYGON ((-84.36511 33.8894…
13121010117 127 60920 4767 0.2785819 0.5710090 0.0612245 8.130996 POLYGON ((-84.36572 33.9613…
13121010120 16 80065 2701 0.7119585 0.1369863 0.0132353 7.925716 POLYGON ((-84.35043 34.0028…
13121010121 78 95083 2138 0.7899906 0.1431244 0.0831335 6.935240 POLYGON ((-84.38006 33.9323…
13121010124 124 73180 2352 0.2695578 0.7147109 0.0324324 8.215346 POLYGON ((-84.34644 33.9926…
13121010125 459 74828 3807 0.4381403 0.3073286 0.1071644 7.786784 POLYGON ((-84.35179 33.9911…
13121010126 30 69286 2577 0.7039193 0.2293364 0.0646900 8.197490 POLYGON ((-84.37474 33.9408…
13121010127 75 125227 2404 0.5486689 0.2940932 0.0822650 7.060880 POLYGON ((-84.37833 33.9369…
13121010128 27 32838 1849 0.3326122 0.3564089 0.0000000 9.005516 POLYGON ((-84.37892 33.9109…
13121010129 84 80679 4354 0.6359669 0.2276068 0.0540070 7.730707 POLYGON ((-84.3788 33.9021,…
13121010130 229 96136 4041 0.3927246 0.0363771 0.1719243 7.688774 POLYGON ((-84.35814 33.9443…
13121010131 NA 78026 2594 0.3735544 0.3527371 0.0320814 7.546075 POLYGON ((-84.35801 33.9487…
13121010132 250 61054 3739 0.6295801 0.2003209 0.2073805 7.651713 POLYGON ((-84.37923 33.9134…
13121010133 960 77406 4883 0.6991604 0.2035634 0.1660959 7.199014 POLYGON ((-84.37917 33.9229…
13121010134 100 70876 2521 0.5136850 0.2871876 0.0793774 8.263872 POLYGON ((-84.3613 33.96844…
13121010135 66 60077 2778 0.4841613 0.3628510 0.1638862 7.670885 POLYGON ((-84.35393 33.9749…
13121010136 119 89167 3310 0.9135952 0.0480363 0.0657216 7.477231 POLYGON ((-84.38161 33.8862…
13121010137 210 69349 3621 0.7056062 0.1706711 0.0723982 7.451069 POLYGON ((-84.38169 33.8867…
13121010204 18 150375 5333 0.9448716 0.0148134 0.0217955 6.301788 POLYGON ((-84.44751 33.9085…
13121010211 118 162763 3000 0.9010000 0.0500000 0.0097561 6.653214 POLYGON ((-84.41227 33.8773…
13121010212 261 67639 5953 0.6474047 0.0322526 0.0524396 7.490583 POLYGON ((-84.39759 33.9002…
13121010213 36 62965 960 0.3479167 0.5031250 0.2272727 6.615813 POLYGON ((-84.38339 33.9632…
13121010214 90 44777 2584 0.5301858 0.2519350 0.4175603 8.077314 POLYGON ((-84.36135 33.9832…
13121010215 87 109820 1508 0.8149867 0.1591512 0.0000000 5.653710 POLYGON ((-84.38333 33.9928…
13121010216 126 88929 3890 0.6239075 0.2940874 0.0240113 7.578167 POLYGON ((-84.38724 33.9475…
13121010217 18 74519 2713 0.6896425 0.2451161 0.0190627 6.911389 POLYGON ((-84.40127 33.9478…
13121010218 72 57778 1656 0.7179952 0.2095411 0.0000000 6.963030 POLYGON ((-84.37526 33.9740…
13121010219 NA 80268 2033 0.4279390 0.4530251 0.0000000 7.543220 POLYGON ((-84.38445 33.9689…
13121010220 193 101016 3567 0.8430053 0.0689655 0.1128943 6.601614 POLYGON ((-84.40664 33.9220…
13121010221 98 84262 1935 0.9271318 0.0118863 0.0000000 7.007453 POLYGON ((-84.39034 33.9351…
13121010222 9 205139 2696 0.9213650 0.0241098 0.0000000 6.161024 POLYGON ((-84.42029 33.8923…
13121010223 27 196528 3223 0.8609991 0.0617437 0.0072757 5.869291 POLYGON ((-84.44385 33.8866…
13121010305 120 70625 5388 0.0001856 0.9940609 0.0568603 6.429038 POLYGON ((-84.57681 33.6955…
13121010306 NA 101313 4322 0.0696437 0.8935678 0.0000000 5.647521 POLYGON ((-84.59997 33.6851…
13121010307 144 81194 5027 0.0165108 0.9719515 0.0000000 6.160153 POLYGON ((-84.56516 33.6437…
13121010308 90 79085 4297 0.1096114 0.8738655 0.0000000 5.771068 POLYGON ((-84.59473 33.6501…
13121010309 NA 88308 4463 0.2119650 0.7880350 0.0000000 4.554712 POLYGON ((-84.73571 33.6246…
13121010310 NA 85444 5233 0.0775846 0.9216511 0.0000000 6.151844 POLYGON ((-84.66369 33.6481…
13121010311 NA 89453 5471 0.0000000 0.9731311 0.0000000 6.207352 POLYGON ((-84.67289 33.6529…
13121010312 407 72466 2832 0.0028249 0.9879944 0.0465116 5.802985 POLYGON ((-84.58257 33.7373…
13121010313 290 68750 3428 0.0020420 0.9903734 0.0000000 5.234983 POLYGON ((-84.63265 33.6992…
13121010314 NA 90778 2757 0.0000000 0.9862169 0.0000000 5.900065 POLYGON ((-84.63395 33.6697…
13121010315 NA 76667 5374 0.0000000 0.9313361 0.0000000 6.267208 POLYGON ((-84.62097 33.6281…
13121010401 224 56210 4722 0.2215163 0.6861499 0.1720297 5.276667 POLYGON ((-84.69 33.53059, …
13121010402 42 57295 3855 0.6967575 0.2874189 0.0679945 3.216635 POLYGON ((-84.85071 33.5114…
13121010508 602 60508 3850 0.0690909 0.8851948 0.0678246 6.890805 POLYGON ((-84.49595 33.5935…
13121010517 359 70254 4469 0.0190199 0.9272768 0.0569620 6.980656 POLYGON ((-84.48503 33.5624…
13121010518 625 59441 2905 0.0540448 0.8974182 0.1143393 6.527690 POLYGON ((-84.49445 33.5782…
13121010519 276 64837 4535 0.1126792 0.7936053 0.1005917 5.955497 POLYGON ((-84.61865 33.5712…
13121010520 126 57378 6263 0.0590771 0.9278301 0.0000000 5.819827 POLYGON ((-84.65394 33.5961…
13121010521 597 47778 1736 0.0639401 0.9274194 0.1171329 6.657193 POLYGON ((-84.4727 33.61505…
13121010522 471 42830 5974 0.0592568 0.8669233 0.0694259 7.137103 POLYGON ((-84.49723 33.5947…
13121010523 170 44479 1103 0.0861287 0.7207616 0.0935412 5.521392 POLYGON ((-84.55089 33.5815…
13121010524 172 44213 2711 0.0140170 0.9531538 0.0603774 6.971667 POLYGON ((-84.55137 33.5757…
13121010525 191 31244 2614 0.0000000 0.9892884 0.0933333 7.109358 POLYGON ((-84.53941 33.5686…
13121010526 342 50337 5230 0.0135755 0.8300191 0.0924159 5.871078 POLYGON ((-84.59762 33.5934…
13121010527 296 34432 5296 0.1299094 0.8153323 0.0454972 6.444786 POLYGON ((-84.59329 33.5868…
13121010528 308 40063 3929 0.1522016 0.7134131 0.0631712 6.547472 POLYGON ((-84.58095 33.5663…
13121010529 438 53502 5063 0.0361446 0.9243532 0.0228742 6.268854 POLYGON ((-84.52869 33.6041…
13121010530 529 42153 3088 0.0327073 0.9145078 0.0689655 6.128432 POLYGON ((-84.53243 33.6331…
13121010531 280 54730 2124 0.0739171 0.8973635 0.0807522 6.496481 POLYGON ((-84.51356 33.5848…
13121010532 64 37987 2758 0.0000000 1.0000000 0.1655518 6.588585 POLYGON ((-84.52272 33.5571…
13121010533 125 51518 1803 0.0754298 0.9245702 0.0000000 6.362698 POLYGON ((-84.53189 33.5670…
13121010534 42 42398 2623 0.3881052 0.5280213 0.0799051 5.932776 POLYGON ((-84.61388 33.5238…
13121010535 31 77074 1971 0.1694571 0.7894470 0.0376671 5.919868 POLYGON ((-84.61861 33.5820…
13121010536 18 76463 2563 0.0058525 0.9941475 0.0000000 5.438821 POLYGON ((-84.63476 33.5908…
13121010537 210 69934 3862 0.0636976 0.9326774 0.0238971 6.706383 POLYGON ((-84.50606 33.5589…
13121010538 64 54896 2375 0.1823158 0.7465263 0.2296369 5.889590 POLYGON ((-84.52461 33.5502…
13121010539 58 73412 2994 0.0337341 0.9662659 0.0533224 6.348374 POLYGON ((-84.54552 33.5524…
13121010540 72 83030 4591 0.1622740 0.8377260 0.0000000 6.251724 POLYGON ((-84.57691 33.5359…
13121010601 330 55479 3673 0.2877757 0.6844541 0.1764019 7.137096 POLYGON ((-84.47101 33.6621…
13121010603 371 39854 4557 0.0072416 0.9433838 0.2368958 6.601105 POLYGON ((-84.48703 33.6429…
13121010604 859 22175 2047 0.0532487 0.8964338 0.1471322 6.072637 POLYGON ((-84.48751 33.6246…
13121010801 874 62543 2363 0.3533644 0.4210749 0.1466667 6.536965 POLYGON ((-84.43355 33.6566…
13121010802 375 70721 4213 0.3391882 0.3455970 0.1135171 7.500051 POLYGON ((-84.41061 33.6598…
13121011000 770 35373 3008 0.2260638 0.6545878 0.1709742 6.972622 POLYGON ((-84.43828 33.6727…
13121011100 581 62297 2333 0.3981997 0.5452207 0.0633446 6.513626 POLYGON ((-84.4405 33.68463…
13121011202 831 47126 3862 0.4122216 0.5233040 0.1400108 7.091721 POLYGON ((-84.4605 33.66815…
13121011203 324 43152 1660 0.5554217 0.3921687 0.0631720 6.319090 POLYGON ((-84.45733 33.6892…
13121011204 228 48107 1293 0.0224285 0.9613302 0.1542289 7.466911 POLYGON ((-84.44969 33.6982…
13121011301 864 55337 4806 0.1238036 0.8404078 0.0414236 6.857351 POLYGON ((-84.48662 33.6779…
13121011306 977 36745 2602 0.0453497 0.8358955 0.1669759 5.892486 POLYGON ((-84.52051 33.6491…
13121011307 553 33633 4319 0.0136606 0.9492938 0.2157402 7.651873 POLYGON ((-84.49776 33.6566…
13121011308 216 40838 1746 0.0120275 0.9810997 0.4475921 7.581854 POLYGON ((-84.49215 33.6363…
13121011309 186 54903 3425 0.1497810 0.8274453 0.0268817 6.874206 POLYGON ((-84.50668 33.6651…
13121011310 821 38005 5329 0.1497467 0.8130981 0.2316412 7.338229 POLYGON ((-84.48684 33.6522…
13121011416 164 117574 5329 0.7954588 0.1155939 0.0233147 6.691043 POLYGON ((-84.36091 34.0757…
13121011417 15 94392 5097 0.7633902 0.1440063 0.1306403 6.505647 POLYGON ((-84.39567 34.0626…
13121011419 47 134797 5808 0.8149105 0.0668044 0.0366868 6.734829 POLYGON ((-84.40219 34.0589…
13121011421 385 63449 5661 0.4946123 0.3195548 0.0488206 7.272056 POLYGON ((-84.3435 34.03677…
13121011422 84 99441 3499 0.7173478 0.1254644 0.0528580 6.674207 POLYGON ((-84.39435 34.0026…
13121011423 26 138512 5781 0.8481232 0.0384017 0.0115886 6.781580 POLYGON ((-84.40142 34.0244…
13121011424 6 96884 6178 0.6617028 0.1801554 0.0211361 7.142171 POLYGON ((-84.27648 34.0045…
13121011426 NA 115054 2728 0.7613636 0.0494868 0.0071006 7.530575 POLYGON ((-84.25742 34.0393…
13121011428 NA 154881 2650 0.8686792 0.0271698 0.0000000 6.684084 POLYGON ((-84.29029 34.0347…
13121011429 NA 122763 5241 0.6193475 0.1060866 0.0522466 7.251971 POLYGON ((-84.28472 34.0413…
13121011430 NA 45040 5016 0.5205343 0.2976475 0.1042623 8.549698 POLYGON ((-84.33517 34.0283…
13121011431 NA 95248 3237 0.5434044 0.0330553 0.1569859 8.461493 POLYGON ((-84.33084 34.0318…
13121011432 10 64320 4002 0.4595202 0.3298351 0.0482590 7.675865 POLYGON ((-84.29088 34.0028…
13121011433 NA 144286 2913 0.7586680 0.1064195 0.0000000 6.944012 POLYGON ((-84.28129 34.0123…
13121011434 4 75188 3616 0.6402102 0.0951327 0.0000000 6.783738 POLYGON ((-84.31767 34.0202…
13121011435 17 64922 3807 0.7698976 0.1862359 0.0805009 7.036340 POLYGON ((-84.33336 34.0093…
13121011436 4 126533 3021 0.7249255 0.1476332 0.0000000 6.519679 POLYGON ((-84.32623 33.9963…
13121011437 279 86154 2623 0.7247427 0.2409455 0.0064457 6.872761 POLYGON ((-84.36213 34.0177…
13121011438 248 101188 5906 0.4466644 0.2131730 0.0605391 7.067723 POLYGON ((-84.36289 34.0143…
13121011439 18 114628 4269 0.8973999 0.0245959 0.0478655 6.852871 POLYGON ((-84.29405 33.9951…
13121011440 4 123155 2343 0.7072130 0.1903542 0.0000000 6.501464 POLYGON ((-84.31468 33.9854…
13121011441 16 106892 4085 0.8795594 0.0288862 0.0000000 7.100993 POLYGON ((-84.31767 34.0202…
13121011442 8 105156 2447 0.7372293 0.2080098 0.0665163 7.378264 POLYGON ((-84.30574 34.0132…
13121011443 NA 154107 3406 0.6233118 0.0666471 0.0111732 6.861098 POLYGON ((-84.25268 34.0241…
13121011444 NA 151923 3481 0.6977880 0.0336110 0.0000000 6.126483 POLYGON ((-84.26929 33.9853…
13121011445 42 136991 2820 0.8698582 0.1273050 0.0332356 6.701143 POLYGON ((-84.38392 34.0328…
13121011446 NA 172778 2999 0.9939980 0.0000000 0.0000000 6.005793 POLYGON ((-84.41913 34.0551…
13121011505 NA 164695 4618 0.8471200 0.0980944 0.0079826 6.979038 POLYGON ((-84.38329 34.0651…
13121011507 NA 250001 3688 0.9506508 0.0000000 0.0000000 5.145987 POLYGON ((-84.36133 34.1370…
13121011508 NA 250001 5109 0.7463300 0.2059111 0.0000000 6.039295 POLYGON ((-84.3002 34.12846…
13121011509 NA 223421 2041 0.9490446 0.0279275 0.0000000 5.090609 POLYGON ((-84.41863 34.0965…
13121011510 NA 174466 6210 0.7937198 0.0417069 0.0050531 6.236041 POLYGON ((-84.37858 34.1186…
13121011511 NA 146220 2592 0.7121914 0.1967593 0.0000000 6.033190 POLYGON ((-84.34175 34.1061…
13121011512 NA 163125 3570 0.7246499 0.0803922 0.0174954 6.369042 POLYGON ((-84.41893 34.0703…
13121011513 NA 151550 3146 0.9043229 0.0460903 0.0285189 6.389543 POLYGON ((-84.41903 34.0613…
13121011514 NA 213172 2825 0.9327434 0.0315044 0.0176416 5.142748 POLYGON ((-84.32023 34.1614…
13121011515 NA 250001 2568 0.9840343 0.0159657 0.0364078 5.661354 POLYGON ((-84.35346 34.1309…
13121011612 NA 159726 3943 0.7101192 0.0453969 0.0125984 6.273630 POLYGON ((-84.22411 34.0039…
13121011618 205 125089 5131 0.5879945 0.1331125 0.0337878 6.891239 POLYGON ((-84.27534 34.0586…
13121011624 NA 199137 4261 0.5789721 0.1154659 0.0085837 7.357548 POLYGON ((-84.20696 34.0688…
13121011627 NA 92910 4243 0.4225784 0.0565638 0.0000000 6.855990 POLYGON ((-84.19 34.01783, …
13121011628 NA 98306 4088 0.4645303 0.1294031 0.0128302 7.562804 POLYGON ((-84.21115 34.0162…
13121011629 NA 170491 4205 0.5728894 0.0489893 0.0208500 6.948651 POLYGON ((-84.21487 34.0424…
13121011630 NA 125000 3927 0.5676089 0.1731602 0.0000000 7.641842 POLYGON ((-84.21203 34.0645…
13121011631 NA 85395 6890 0.6348331 0.0786647 0.0352423 7.469992 POLYGON ((-84.19436 34.0666…
13121011632 NA 124138 3582 0.4611949 0.1968174 0.0088710 7.467307 POLYGON ((-84.20049 34.0554…
13121011633 NA 127583 3394 0.6688273 0.0633471 0.0000000 7.105906 POLYGON ((-84.21938 34.0523…
13121011634 NA 88816 2777 0.5361901 0.1933741 0.0000000 7.481083 POLYGON ((-84.23132 34.0557…
13121011635 NA 134634 3228 0.3776332 0.1991945 0.0220386 6.146942 POLYGON ((-84.14423 34.0498…
13121011636 171 91088 1490 0.4241611 0.1013423 0.1256545 6.748008 POLYGON ((-84.27167 34.0688…
13121011637 136 221250 2656 0.5572289 0.0982681 0.0000000 6.630642 POLYGON ((-84.28657 34.0483…
13121011638 NA 103162 4423 0.7300475 0.0250961 0.0463144 7.269819 POLYGON ((-84.26014 34.0425…
13121011639 196 76044 1793 0.4712772 0.1639710 0.1941341 6.732161 POLYGON ((-84.29363 34.0708…
13121011640 169 104492 5197 0.4825861 0.1402732 0.0402355 7.266242 POLYGON ((-84.29681 34.0711…
13121011641 NA 217284 4866 0.8156597 0.0191122 0.0000000 6.282026 POLYGON ((-84.33191 34.1039…
13121011642 139 86304 3164 0.6125158 0.1324273 0.0332779 7.174050 POLYGON ((-84.29471 34.0811…
13121011643 164 58750 3743 0.2188084 0.1554902 0.0370899 7.289492 POLYGON ((-84.27882 34.0942…
13121011644 14 87727 4291 0.4264740 0.1652296 0.0047619 8.283059 POLYGON ((-84.26593 34.1085…
13121011645 35 115474 4149 0.4885515 0.4299831 0.0202020 7.457997 POLYGON ((-84.27177 34.0980…
13121011646 698 76594 4359 0.4443680 0.1775637 0.1124389 6.586758 POLYGON ((-84.32095 34.0433…
13121011647 262 64485 4968 0.6193639 0.2008857 0.1364829 6.415563 POLYGON ((-84.33576 34.07, …
13121011648 NA 148142 2489 0.2985135 0.0000000 0.0184941 6.363125 POLYGON ((-84.16811 34.0288…
13121011649 NA 151500 4968 0.5547504 0.0026167 0.0000000 6.720348 POLYGON ((-84.17659 34.0461…
13121011650 156 124091 4879 0.2816151 0.1897930 0.0049559 7.495980 POLYGON ((-84.25946 34.0664…
13121011651 NA 138470 2229 0.5491252 0.1166442 0.0355677 6.720868 POLYGON ((-84.25056 34.0689…
13121011652 338 101362 2662 0.4876033 0.0484598 0.0205800 5.973907 POLYGON ((-84.26862 34.0747…
13121011653 NA 217716 3827 0.7125686 0.0846616 0.0000000 6.809848 POLYGON ((-84.24079 34.0835…
13121011654 NA 114375 2556 0.6572770 0.1604069 0.0396745 7.296737 POLYGON ((-84.32524 34.0747…
13121011655 16 137000 2476 0.9236672 0.0270598 0.0363636 6.680561 POLYGON ((-84.32638 34.0872…
13121011656 NA 160673 3882 0.5656878 0.1218444 0.0000000 6.753168 POLYGON ((-84.24613 34.0768…
13121011657 NA 158813 3216 0.6411692 0.0864428 0.0000000 7.553724 POLYGON ((-84.20637 34.0732…
13121011658 NA 110881 4033 0.4934292 0.2179519 0.0398406 7.568026 POLYGON ((-84.22121 34.0437…
13121011659 NA 120833 2955 0.5167513 0.0758037 0.0000000 6.507904 POLYGON ((-84.23483 34.0338…
13121011660 114 97545 4838 0.5535345 0.1002480 0.1013165 6.666056 POLYGON ((-84.29725 34.0815…
13121011661 NA 182254 2200 0.9027273 0.0322727 0.0000000 6.054767 POLYGON ((-84.30158 34.1241…
13121011801 126 55000 465 0.3763441 0.4774194 0.1527778 6.724844 POLYGON ((-84.41738 33.7713…
13121011802 447 22077 1430 0.1713287 0.7447552 0.2410016 6.989071 POLYGON ((-84.4174 33.77003…
13121011902 307 31389 1208 0.3874172 0.5057947 0.3743590 8.136614 POLYGON ((-84.37664 33.7494…
13121012000 1213 16104 3482 0.1364159 0.8156232 0.2972810 7.291222 POLYGON ((-84.4 33.7316, -8…
13121012300 1577 41907 2933 0.2376406 0.5407433 0.1755361 6.710993 POLYGON ((-84.45301 33.6420…
z <- function(vector){ round((vector - mean(vector))/sd(vector), 3) }

pass_per_stop_pal <- colorQuantile(palette = "Reds", domain = stop_tract$n_departures)

leaflet() %>% 
  addProviderTiles(providers$CartoDB.DarkMatter) %>% 
  addPolygons(data = stop_tract, 
              fillColor = pass_per_stop_pal(stop_tract$n_departures),
              fillOpacity = 0.8,
              color = 'grey',
              weight = 1, 
              popup = paste0("ID: ", stop_tract$GEOID, ", Value: ", stop_tract$n_departures)) %>% 
  addLegend(position = "bottomright",
            values = stop_tract$n_departures,
            pal = pass_per_stop_pal)
message(str_c("there are ", sum(is.na(stop_tract$n_departures)), " NAs in n_departures"))
## there are 84 NAs in n_departures
plotly::ggplotly(departure_count)